Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Share] No share countHi, genxinfo.
If counts are missing from Google and LinkedIn but not Facebook, it can be a sign that your host imposes restrictions that prevent PHP calling out to the Google and LinkedIn APIs. (The open_basedir restriction detailed here is one example of such a restriction: https://wordpress.org/support/topic/lost-google-share-counts-after-hosting-migration?replies=3#post-8366154 ).
It’s worth reviewing your logs and checking with your host in this case.
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after Updates@debrarutt19 It looks like your site is caching an old version of the updated JavaScript file at http://theharriedmom.com/wp-content/plugins/genesis-simple-share/lib/sharrre/jquery.sharrre.min.js?ver=0.1.0.
Please could you clear any caching plugins or caching services provided by your host? You should find that solves things.
Forum: Plugins
In reply to: [Genesis Simple Share] Facebook button is not appearHi Bayu!
I see the Facebook button on that page in Chrome: http://d.pr/i/1faYD
Are you using any privacy extensions in your browser, or Firefox in private browsing mode? These can block Facebook by default.
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after UpdatesThanks very much for the update, John – that’s great to hear. 🙂
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after UpdatesVersion 1.0.9 is now out – you should find this restores your Facebook share count.
Forum: Plugins
In reply to: [Genesis Simple Share] Share count lost on this page and all othersVersion 1.0.9 is now out – you should find this restores your Facebook share count.
Hi, Eduardo!
1. Display properties that are only for rent on a page or post?
There is no shortcode to display a property or group of properties on a page or post at the moment. You could link to a page that shows only rental properties, though:
- Create a taxonomy called ‘types’ at Listings → Register Taxonomies: http://d.pr/i/16RnC
- Edit your rental properties and mark them as ‘rental’ in the Types area: http://d.pr/i/PSJM
- Link to rental types only by using this URL format: http://example.com/?s=&post_type=listing&types=rental (You would replace
example.comwith your own URL. The result will be a page that shows only rental property, similar to this: http://demo.studiopress.com/agentpress/?s=&post_type=listing&types=single-family-home )
2. Adding more fields to the Property Details section?
You can add more fields by adding some code to your theme. There are more details here:
https://wordpress.org/support/topic/property-details-field?replies=2#post-7322469
Forum: Plugins
In reply to: [Genesis Simple Share] Share count lost on this page and all othersHi, rhizomaticzoho.
Thanks for the report! The zero count you see on that post for Facebook is a known issue and will be corrected by the next plugin update coming early this week. If you’d prefer not to wait, you can download the developer version I mentioned in the original topic.
It’s only necessary to report specific posts if you see non-Facebook counts resetting too. It looks like your other networks are fine, but I’m happy to look into any that aren’t behaving as you expect. Feel free to report those in the future if you need further help at all.
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after UpdatesThanks for the report!
We’re aware of an issue with Facebook counts resetting to zero, which is due to a sudden change in Facebook’s API. We expect to patch the plugin on Monday to resolve this. If you’d prefer not to wait until then, you’re very welcome to test the development version here, which includes the fix for Facebook:
https://github.com/copyblogger/genesis-simple-share/archive/develop.zip
If you’re seeing other counts resetting to zero, that can be caused by a few things:
- Domain changes, such as changing the domain name, dropping the www from your domain, or switching from http → https or vice-versa;
- Blocking the social network APIs with plugins such as Ghostery, or private browsing mode in Firefox
- Restrictions imposed by your host (such as the open_basedir restriction detailed here: https://wordpress.org/support/topic/lost-google-share-counts-after-hosting-migration?replies=3#post-8366154 ). It’s worth reviewing your logs and checking with your host in this case.
If you need further help with this, it would be helpful to have:
– A link to a single example post where the count(s) has reset.
– The social network(s) that you believe to have reset.
– An idea of what you expect the counts to read.It’s really helpful for us to have one report per thread so that we can focus on solving each issue independently. If you’re not the original poster, please start a new topic with any additional details – thanks!
Forum: Plugins
In reply to: [AgentPress Listings] Listings Page showing a blank pageHi, gladita.
I see a 500 server error when visiting http://www.experiencenegros.com/listings/.
It would be worth checking your server logs or asking your web host to investigate – they may be able to offer a reason or error message being generated by that page.
Forum: Plugins
In reply to: [Genesis Simple Share] WaypointsHi, srower, and thanks for the feedback. I’ve passed this on to our development team but don’t currently have a release date for a fix I can share. Sorry for the delay there.
Forum: Plugins
In reply to: [Genesis Simple Edits] Genesis Simple Edits And HooksHi, wellnessjunkie!
Is your active theme a Genesis child theme? If not, you’ll need to activate a Genesis theme before you can activate these plugins.
It’s also worth checking that your version of Genesis is up to date. You can download the latest copy from https://my.studiopress.com/downloads/.
Hi testitit!
There’s no built-in way to reset the click counts, but you still have a couple of options:
1. Trash the link you want to reset, empty the trash, and add a link using the same name and URL as the original. This effectively resets the link count.
Alternatively, to reset all link counts at once to zero, you can follow these steps:
2a. Take a full site backup. (You can use a plugin such as https://wordpress.org/plugins/backupwordpress/ or a service such as https://vaultpress.com/. )
2b. Add the following code to your active theme’s functions.php file:
add_action( 'admin_init', 'simple_urls_reset_link_count' ); function simple_urls_reset_link_count() { $simple_urls = get_posts( array( 'post_type' => 'surl', 'posts_per_page' => - 1 ) ); foreach ( $simple_urls as $url ) { update_post_meta( $url->ID, '_surl_count', 0 ); } }2c. Visit any admin page.
2d. Verify that the counts have reset on the Simple URLs admin page.
2e. Remove the above code from your functions file.
Forum: Plugins
In reply to: [Osom Author Pro] "Series" Link ErrorIf you remove the archive headline it should use the name of the archive, such as “Books of the Infinite”, but the default title may depend on your theme – your theme may be using “Archive:” by default as the title on archive pages.
You could try specifying the title manually by placing “Books of the Infinite” in the Archive Headline field.
Forum: Plugins
In reply to: [Genesis Simple Hooks] "Execute PHP" flag ERROR(If this only happens when you insert PHP code into the fields, please feel free to share the code if you’d like any further advice at all.)