riccardorusso79
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] NEW version has bugs!I upgraded to WP 3.9.2
Then
– Exported the quiz.
– Disinstalled WP PRO QUIZ
– Installed WP PRO QUIZ 0.28
– Imported the quiz. Customize mail@
– Everything works.Then
– Upgraded to WP PRO QUIZ 0.29
– Check mail@ ok.
– Mail KO. Statistics KOThen
– Disinstalled WP PRO QUIZ
– Installed WP PRO QUIZ 0.29
– Imported the quiz.
– Mail KO. Statistics KORiccardo
Forum: Plugins
In reply to: [Wp-Pro-Quiz] NEW version has bugs!I have just upgraded the WP to 3.9.2 but no luck.
I tried to install this new version on another machine and no email and statistics. Rolled back to 2.8 and everything was fine.
Any idea?
Versione PHP 5.4.29
Versione MySQL 5.5.37
Versione Curl 7.24.0 / SSL: OpenSSL/1.0.0 / libz: 1.2.3Riccardo
Forum: Plugins
In reply to: [Wp-Pro-Quiz] NEW version has bugs!My WP is on linux but it is still in 3.8.3
Maybe this is the problem..
Forum: Plugins
In reply to: [Wp-Pro-Quiz] NEW version has bugs!Can I rollback to 2.8 plugin version? Is Database still the same?
Can this procedure work:
Download and extract the old version from the plugin repository
Disable the plugin
Log on to your server with FTP or SSH
Upload the old plugin directory to wp-content/plugins/. (You would want to overwrite the newer version.)Forum: Plugins
In reply to: [WP RSS Multi Importer] Add featured Image to RSS – HOW TOdestination
Forum: Plugins
In reply to: [WP RSS Multi Importer] WARNING! RSS Multi Importer may delete all content!Hello, I have experienced today that trashing posts pr pages (having this plugin installed) using the standard WP GUI, causes random post/page delete. No autopost active in my case.
However, now, before trashing a page/post I deactivate the plugin and then I re-activate it
WP 3.9.2
RiccardoForum: Plugins
In reply to: [CataBlog] catablog_show_itemsOk it seems working!
Forum: Plugins
In reply to: [Really Simple Share] Facebook fan boxOk nice. I noticed that YOAST SEO did it for me ??
This was not so obvious for me:
– using your plugin, I can like/share my website and using APP ID I can monitor user behaviuor by FB Insights
– using “Fan Box” i can add followers and likes to the FB Fan Page of my website and using the same APP ID I can monitor user behaviuor by FB Insights.Now it is more clear. Just really the last question: is there a way clicking LIKE/SHARE on your plugin to propose to the user to follow also the Fan Page or, better, add directly to it? I’m using the HTML5 code instead of iframe
Really really thanks!
Riccardo
Forum: Plugins
In reply to: [Really Simple Share] Facebook fan boxOk, thanks for support.
– I created and APP ID for my domain by https://developers.facebook.com
– I set in your plugin that ID
Additional:
– YOAST SEO is now using this app id for traffic analysis.You wrote: “Fan Box to the advanced insights giving it a valid APP ID” –> How can I do this?
Forum: Plugins
In reply to: [Really Simple Share] Line feed in manual modeThanks!
Forum: Plugins
In reply to: [Really Simple Share] Facebook fan boxEDIT: I get the fan page ID using this site: https://findmyfacebookid.com/.
Forum: Plugins
In reply to: [CataBlog] og:image in template galleryhttps://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content/
Use high-resolution images (preferably 1500 pixels wide). Use multiple images if you want to give us multiple thumbnail candidates.
Use images that are at least 1200 x 630 pixels for the best display on high resolution devicesForum: Plugins
In reply to: [CataBlog] og:image in template galleryjust for asking a future feature.
The standard image or subimages usually are not suitable for facebook sharing. FB requires a 1500×1500 thumbnail, so it will be nice if Catablog could provide:
– share_thumbnail_image (same method used for Image and Subimage)
– specific folder in wp_content/uploads/catablog (as for originals)
– hash value in $data= get_post_metaRiccardo
Edit: final custom solution:
<?php $data= get_post_meta(get_the_ID(), 'catablog-post-meta', true); if (!empty($data)) { echo '<meta property="og:image" content="'. wp_upload_dir()['baseurl'] . '/catablog_share/'.$data["image"] . '" />' . "\n"; } ?>
Forum: Plugins
In reply to: [CataBlog] og:image in template galleryYes you can!
Remember that facebook needs at least a 200×200 image and yoast seo for the other tags.Forum: Plugins
In reply to: [CataBlog] og:image in template galleryI see the light at the end of tunnel!
My single-catablog-items.php calls get_headers function, so I put in the HEAD section of header.php this code
<?php $data= get_post_meta(get_the_ID(), 'catablog-post-meta', true); if (!empty($data)) { echo '<meta property="og:image" content="'. wp_upload_dir()['baseurl'] . '/catablog/originals/'.$data["image"].'" />'."\n"; } ?>
The meta tag is inserted and facebook share is now ok