whiletrue
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple Share] FB.getLoginStatus() called before calling FB.init()Hi laserjobs,
the “amp;” is for xhtml compatibility, anyway I’m uploading the new 2.11.2 release without it. Cheers!Forum: Plugins
In reply to: [Really Simple Share] FB.getLoginStatus() called before calling FB.init()Hi laserjobs,
the issue is now fixed in the 2.11.1 plugin release.
Thanks for reporting it!Forum: Plugins
In reply to: [Really Simple Share] youtube shareHi,the Youtube button is now available in the 2.11 plugin release. Cheers!
Forum: Plugins
In reply to: [Really Simple Share] youtube shareHi,
can you point me to a working sample of it on other websites?Forum: Plugins
In reply to: [Most And Least Read Posts Widget] Plugin does not appear on postsHi hobba,
the new 2.1 plugin release, out today, solves the issue you noticed.Forum: Plugins
In reply to: [Most And Least Read Posts Widget] Most read not being displayedHi all,
the new 2.1 plugin release, out today, solves the issue you noticed.Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Twitter Avatar QuestionHi whimsypanda,
the new 2.4.2 plugin release, out today, adds a “Show account thumbnail on title” widget option: enable it to have your account image shown.You can add some style to the image via CSS, styling its “really_simple_twitter_author” class. Sample code:
.really_simple_twitter_author { width: 26px; border-radius: 4px; }Forum: Plugins
In reply to: [Really Simple Share] The plugin's gone!I’m Aldo waiting, it should be approved tomorrow.
Forum: Plugins
In reply to: [Really Simple Share] The plugin's gone!Hi, there was a vulnerability in the settings page, now solved. The plugin page should be back soon.
Forum: Plugins
In reply to: [Really Simple Share] Pinterest Not WorkingHi, your issue is caused by missing/conflicting javascript code inside your theme. Please update the plugin and try to enable/disable the “put scripts at the bottom of the body” option. If it’s not solved, try to enable/disable your other plugins, starting with the social oriented ones.
… and sorry for the late answer!
Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Causes site crashesHi joseayram, your issue seems unrelated because of your different PHP version. What’s the error string you get?
Forum: Plugins
In reply to: [Really Simple Share] Facebook like div dissapears under div (v2.10)Hi AnwarShehata, yes I tested it continuously liking your page 🙂
Forum: Plugins
In reply to: [Really Simple Share] Load/show plugin priorityHi vyonte,
to show the buttons before the post just go to the “Settings->Really simple share” menu and change the “position” option. Cheers!Forum: Plugins
In reply to: [Really Simple Share] Disable sharing in page or postHi ayoungvoice,
I came up with a possible solution; it’s probably out of time, but it’s always worth posting it if others need it.You can solve by hiding the buttons with CSS applied to a body class.
First, look in your page html for a class inside the
bodyelement identifying it, e.g.postid-707
Then, add to your CSS file a rule like this:
body.postid-707 .really_simple_share { display: none; }Forum: Plugins
In reply to: [Really Simple Share] different buttons for different pagesHi myhay,
I think you can obtain it by hiding the G+ button with CSS on the front page, with a rule like this:
body.home .really_simple_share_google1 { display: none; }Other approaches are more difficult to obtain, because the plugin logic is to activate every button that you’ll use in the site (even if some buttons are disabled or hidden in a sigle post/page, or added somewhere by shortcodes), in order to be able to load the needed javascript and style.
Also, mixing different plugins for social networks is always dangerous.