Didier77
Forum Replies Created
-
Unfortunately, version 7.0.3.2 does not solve the issue!! I have tried also to empty browser cache but no chance…
I don’t use any cache plugin. I don’t think it is related to theme issue.
After more tests, I have still the issue with Firefox 22.0. The first time, the main page is loaded only facebook icon is displayed. I have to press F5 (refresh) key to have all icons displayed!
Hi C Reign,
I don’t know why but after a few minutes, the issue has disappeared itself! Maybe a caching issue (not solved by clearing browser cache?)…
Hi C Reign,
The issue is visible on https://lamourduprochain.org.
“When you open your Index button placement Edit screen, have your preferences been saved as you expect?” Yes.
I have upgraded to version 7.0.3.1 but still have the issue.
The services selected are in this order:
– Facebook
– Twitter
– Google+
– Yahoo Messenger
– Hotmail
– Google MailTheme = Fat circle
Headline = No heading
Show ‘more options’ button = unchecked
Layout = Horizontal
Size = Normal
Counter = Badge
Alignment = CenterVersion 7.0.3.0 is much better. I am able to edit settings and I appreciate the new feature “toggle off ‘More Options'”.
However, I have still an issue: Only facebook icon is displayed on my main page (index). All icons are properly displayed properly. I have tried to clear my browser cache but this does not solve the issue.
When installing v7.0.3.0, v6.1.3.8 was automatically disabled. Must I uninstall it?
@Shareolic,
Sorry for the delay to answer. What did you mean by “setting modal is supposed to come up”? Is there a modal dialog box? I don’t have received any warning from my browser that a dialog box is blocked? As you probably know, most of users disable pop-up…
Unfortunately, I cannot send you console logs as I have revert back to version 6.
After reading some comments/answer on version 7, it seems that it is know necessary to have a shareolic account to use the sexybookmark plug-in. Did you confirm?
Thanks,
Didier77Forum: Plugins
In reply to: [Broken Link Checker] Broken Link Checker installation failed.I have also the same issue on one of my web site. Delete and re-install does not fix it……….
I have disable the plugin until this issue is solved…
Thanks for your workaround but this does not solve the
Fatal error: Call to undefined method stdClass::add_role() in …/wordpress/wp-content/plugins/backwpup/inc/class-install.php on line 94
Did someone know how to solve the installation issue?
Same error on my website after upgrade. Deleting and re-installing does not solve the issue!
Fatal error: Call to undefined method stdClass::add_role() in /home/eglisela/public_html/wp-content/plugins/backwpup/inc/class-install.php on line 94
Return to version 3.0.8 that works properly!
I have the error after upgrading to WordPress 3.5!
Thanks mempf. Your workaround solves the issue on my web site.
Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] Number of viewsSorry if I was unclear.
To use the “number of views” feature, you have to
1- Insert the code above in function.php of your theme. You can add it anywhere (just before the final ?> by example).
2- Anywhere, in a post or a page, add [nbviews id=xxx] where xxx is the id of the wordtube media.
By example, if the media ID is 199, type [nbviews id=199]. This will display the counter of views for id 199.I hope it clarifies.
You can see a sample at https://montereau.egliselacolombe.org/?page_id=85 (sorry it is in French).Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] Number of viewsI have found myself the solution of my question. I have added the following lines in function.php file of my theme:
// Display nb of views of wordtube videos
//
// Usage: [nbviews id=xxx] where xxx is the ID of the video
//
function nbviewswordtube($videoid) {
global $wpdb;
$tables = $wpdb->get_results(“SELECT * FROM “.$wpdb->wordtube.” WHERE vid = “.$videoid[‘id’]);
if($tables) {
return $tables[0]->counter;
}
}
add_shortcode(‘nbviews’, ‘nbviewswordtube’);Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Permlink Structure ErrorThanks a lot!
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Permlink Structure ErrorOk, thanks. Any recommendation of permalinks I can use? I envisage /%postname%/. Is it ok?