Forum Replies Created

Viewing 15 posts - 1,636 through 1,650 (of 2,108 total)
  • Author
    Posts
  • in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    You can use “Shortcodes” above the post manually to display the sharing buttons.

    Here is the documentation page: http://www.aakashweb.com/docs/wp-socializer-docs/manual-placement/

    in reply to: Disable on Custom Pages Only
    Aakash
    Keymaster

    Under those post edit page, you will see a metabox on the right side named “WP Socializer”. It contains options to disable WP Socializer on that specific page. Thank you.

    in reply to: Preserving social sharing button count after domain change
    Aakash
    Keymaster

    Use the latest WP Socializer version.

    You need to do the domain name change work in the “wp-socializer.php” file.

    The function “wpsr_get_post_details()” sends the post details to the share buttons.

    So inside that function in line 1174 (as of v2.4.5) add your post URL changing code block like this

    Code:

    /******* TO CHANGE THE POST URL (obtained from encosia.com ) ***/

    // Changed URL structure from /yyyy/mm/dd/slug to /slug on
    // 5/28/2011. This ensures older posts still present the old URLs
    // to sharing services so that share counts are maintained.
    $url_change_date = strtotime(“5/28/2011”);
    $post_date = strtotime(get_the_date());

    $post_url = get_permalink($post->ID);

    if ($post_date < $url_change_date) {
    $url_date_prefix = "/" . date("Y", $post_date) .
    "/" . date("m", $post_date) .
    "/" . date("d", $post_date);

    $permalink_inside_loop = str_replace("://encosia.com",
    "://encosia.com" . $url_date_prefix,
    $post_url);
    }

    /*********************** END *************************************************/

    The actual concept is to store the “$permalink_inside_loop” variable with tweaked URL thats all.

    in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    Why do you need to insert the buttons like this ???

    Just go to WP Socializer -> Placement -> Template 1/2 and in the text box, tweak the “button codes” as you like.

    For enabling the floating sharebar, Go to “Floating share bar” admin page and uncheck “Temporarily disable floating sharebar”.

    Thats all.

    in reply to: Floating Sharebar is displaying below footer
    Aakash
    Keymaster

    There is no problem with the plugin. Its all because, there is a JS error in your page. It makes the Floating share bar inactive and stay at bottom.

    If you clear the bug you see in the JS of the page, it will work fine.

    Thank you.

    in reply to: Slow load times for when WP Socializer plugin activated
    Aakash
    Keymaster

    A new version WP Socializer v2.4.5 is released with “Smart load” feature. Hope so it doesn’t make the site load slow. It is fast my tests and I am happy with it.

    More Info: http://www.aakashweb.com/wordpress-plugins/wp-socializer/

    in reply to: How do i delete an unwanted shortcode?
    Aakash
    Keymaster

    I am glad to solve your problem. Shortcoder is my favorite plugin.

    The official fan page for Aakash Web is https://www.facebook.com/aakashweb . Here you can show your support for the plugin and other free products.

    in reply to: Feature Request
    Aakash
    Keymaster

    Thanks for the idea. But anyway many will not prefer it. If it is essential for you, just edit the public/announcer-js.js file accordingly.

    Ill implement this for all after a research and usage.

    in reply to: When closed using the X, how long until it reappears?
    Aakash
    Keymaster

    The announcement will be closed for 1 year.

    It will be re-shown to all users when a new announcement is made.

    If you want to force the closed announcement to reappear, just make some small changes like adding a full-stop etc. Doing this will delete the cookie and make it appear for all.

    Thank you.

    in reply to: How do i delete an unwanted shortcode?
    Aakash
    Keymaster

    Just drag the shortcode to be deleted and drop it on the “trash can” you see on the right bottom of the page. Thats all. The shortcode is deleted.

    in reply to: Email button isn’t working properly
    Aakash
    Keymaster

    In my side, the email button works perfectly. No issues here. When i click the button, Gmail opens with the excerpt of the post filled in the MSG box. Thank you.

    in reply to: Export Shortcodes
    Aakash
    Keymaster

    Currently there is o feature, But Ill make it available it for the future version if possible.

    in reply to: </textarea>
    Aakash
    Keymaster

    Seems to be a problem with the plugin. Ill fix it soon.

    in reply to: Left Float Bar Missing
    Aakash
    Keymaster

    The problem is completely due to your theme. Your theme needs an “swing” effect somewhere ( I think menu dropdown) and the required object is not found in the jquery file. So you should use the “jquery.easing” file along with your theme to get out of this error.

    The errors:

    Code:

    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.askmariosingh.com/wp-content/themes/Calypso/js/jquery.cookie.js?ver=3.4.1
    Uncaught TypeError: Object # has no method ‘swing’ jquery.min.js:2
    Uncaught TypeError: Cannot read property ‘viewBox’ of null cufon.js:7

    in reply to: Floating Share Bar no longer working as it should.
    Aakash
    Keymaster

    Sorry for the zero reponse. I was busy committed to various other projects and was not able to look into the forum for a week. This will not happen in future.

Viewing 15 posts - 1,636 through 1,650 (of 2,108 total)

Subscribe to our Newsletter

Get updates on the WordPress plugins, tips and tricks to enhance your WordPress experience. No spam. View newsletter

By using this website, you agree to our Terms