Forum Replies Created
-
AuthorPosts
-
AakashKeymasterOh 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_SHORTCODEDo not add line breaks, add it all in one line.
AakashKeymasterCan you please post an image of the problem ??
AakashKeymasterPlease check for errors in your page. It is the actual reason.
AakashKeymasterIf your theme have a Javascript error then Super RSS reader JS will not work. Clear that bug, and SRR will work.
AakashKeymasterYou can use custom CSS to change the height and other properties of the announcement box.
AakashKeymasterUse this code
Code:BUTTON_SHORTCODE
BUTTON_SHORTCODE
BUTTON_SHORTCODE
BUTTON_SHORTCODE
BUTTON_SHORTCODE
AakashKeymasterThe new version v3.2 has this bug fixed. Thank you.
AakashKeymasterYou 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/
AakashKeymasterUnder 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.
September 27, 2012 at 12:34 pm in reply to: Preserving social sharing button count after domain change #6107
AakashKeymasterUse 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 thisCode:/******* 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.
AakashKeymasterWhy 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.
AakashKeymasterThere 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.
September 24, 2012 at 5:53 pm in reply to: Slow load times for when WP Socializer plugin activated #5991
AakashKeymasterA 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/
AakashKeymasterI 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.
AakashKeymasterThanks 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.
-
AuthorPosts
