Forum Replies Created

Viewing 15 posts - 1,606 through 1,620 (of 2,090 total)
  • Author
    Posts
  • in reply to: Disable on Custom Pages Only
    Aakash
    Keymaster

    What kind of posts are they actually ?? normal posts or custom post types ??

    in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    Hope you inserted successfully the buttons at the top of the post manually. Just carry on this post for the floating share bar. http://www.aakashweb.com/forum/wp-socializer-f22/how-to-manually-insert-floating-social-bar-t1753.html

    in reply to: How to Manually Insert Floating Social Bar?
    Aakash
    Keymaster

    What kind of post is that ??? Why the floating share bar is not appearing there ??

    in reply to: v2.4.5 Update Breaks Retweet Function in Floating Bar
    Aakash
    Keymaster

    It’s happy to see the plugin working there perfectly 🙂

    in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    Now the buttons seems to work fine. Great !!

    in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    Oh sorry, i think WordPress automatically adds line breaks (i.e
    tags )to the code.

    This code will definitely work.

    Code:

    BUTTON_SHORTCODE BUTTON_SHORTCODE BUTTON_SHORTCODE BUTTON_SHORTCODE BUTTON_SHORTCODE

    Do not add line breaks, add it all in one line.

    in reply to: Multiple Feeds not displaying correctly
    Aakash
    Keymaster

    Can you please post an image of the problem ??

    in reply to: Ticker not working:-(
    Aakash
    Keymaster

    Please check for errors in your page. It is the actual reason.

    in reply to: Ticker not working
    Aakash
    Keymaster

    If your theme have a Javascript error then Super RSS reader JS will not work. Clear that bug, and SRR will work.

    in reply to: Bar Height
    Aakash
    Keymaster

    You can use custom CSS to change the height and other properties of the announcement box.

    in reply to: Floating Bar and Button Spacing
    Aakash
    Keymaster

    Use this code

    Code:

    BUTTON_SHORTCODE
    BUTTON_SHORTCODE
    BUTTON_SHORTCODE
    BUTTON_SHORTCODE
    BUTTON_SHORTCODE

    in reply to: </textarea>
    Aakash
    Keymaster

    The new version v3.2 has this bug fixed. Thank you.

    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.

Viewing 15 posts - 1,606 through 1,620 (of 2,090 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