Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Share] Stumble count number limits at 199Hi Jeff
Genesis Simple Share pulls the count data directly from StumbleUpon. You can check the plugin is accurately reflecting the count from StumbleUpon using this URL, replacing
http://example.comwith the full path to your post:http://www.stumbleupon.com/services/1.01/badge.getinfo?url=http://example.comIf the view count there matches what you see on the button, either StumbleUpon is rejecting the new count, or a network or other error when sharing it last time prevented the new share from being registered. (When clicking the button you’ll immediately see the share count go up whether or not it’s correctly registered with StumbleUpon.) You could try sharing it again, but there’s no hard limit at 200 shares that I’m aware of.
If the view count doesn’t match what you see on the button, you’re welcome to share more info, such as the page URL.
Your theme includes this CSS that is hiding the button:
.enews #subbutton, .searchsubmit { display: none; }You could add a more specific rule to your theme’s stylesheet to make sure the button appears in the listings search widget:
.property-search .searchsubmit { margin: 10px auto; display: block; }That will give you this: http://d.pr/i/gOjp
You may want to tweak the design further, but I hope that proves helpful as a starting point!
- This reply was modified 9 years, 7 months ago by Nick C. Reason: add image inline
Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?You can filter the slug by adding this code to your active theme’s functions.php file:
add_filter( 'agentpress_listings_post_type_args', 'sp_change_listings_slug' ); function sp_change_listings_slug( $args ) { $args['rewrite'] = array( 'slug' => 'commercial-listings' ); return $args; }If you don’t see the change reflected immediately in your URL structure, visit Settings → Permalinks and click “Save Changes” to flush your site’s rewrite rules.
- This reply was modified 9 years, 7 months ago by Nick C.
Forum: Plugins
In reply to: [Genesis Simple Share] Genesis Simple Share and Minimize request size errorHi, @todorchristov!
By default the Genericons stylesheet that Genesis Simple Share uses base64 encodes the woff font, which is the source of the warning you’re seeing from Pingdom. This is to work around an issue with cross-origin requests, where a stylesheet loads a font from a different domain or CDN.
If you’re serving the font from the same domain (or using a CDN but can enable cross-origin resource sharing), you could change the second
@font-facedeclaration inwp-content/plugins/genesis-simple-share/lib/css/genericons.cssto look like this instead:@font-face { font-family: 'Genericons'; src: url('../font/genericons-regular-webfont.woff') format('woff'), url('../font/genericons-regular-webfont.ttf') format('truetype'), url('../font/genericons-regular-webfont.svg#genericonsregular') format('svg'); font-weight: normal; font-style: normal; }(Replacing the base64 encoded version of the woff url with a path to the file.)
That will remove the warning from Pingdom. The actual performance gain from doing this is likely to be very small indeed, though, so personally I leave the file unedited on my sites. There are almost always bigger performance gains to be made elsewhere.
Simple URL links shouldn’t be indexed by search engines because they issue a redirect code: https://wordpress.org/support/topic/should-i-click-noindex-for-simple-urls-with-yoast-wordpress-seo/
If they are being indexed, though, setting noindex via WordPress SEO and excluding them from your sitemap are both good ideas.
Forum: Plugins
In reply to: [Osom Author Pro] does not work with WordPress 4.6.1.Hi, @zwoo. I’m able to run Author Pro 0.9.0 on WordPress 4.6.1 without seeing a 500 error.
Do your server logs show any errors?
To restore admin access, you could remove or rename the
genesis-author-profolder via FTP.Forum: Plugins
In reply to: [Genesis Simple Share] Facebook Counts missing after site migrationHi, Paula!
First, it’s worth making sure you’re running the latest version of the plugin (1.0.9), which includes a fix for the Facebook counts zeroing. If you’ve already updated to that, you can try clearing any caching plugins or caching services.
Next, if the domain, subdomain (adding or removing www) or protocol (http → https) changed during your migration, that can reset your counts for Facebook. The plugin does not currently offer the option to also fetch counts from previous domain variations.
If you’d like further help with this, feel free to share a link to a post where the counts have reset, and mention any changes to the domain you’ve made, if any.
- This reply was modified 9 years, 8 months ago by Nick C.
Hi, biberkopf!
The child theme root is the correct place to add these files. To confirm which file is being used, you can use a plugin such as What Template File Am I Viewing, which adds the template path to the admin toolbar: https://wordpress.org/plugins/what-template-file-am-i-viewing/.
Note the Author Pro plugin unhooks the following Genesis entry actions in
genesis-author-pro/functions/template.php, though:- genesis_before_entry
- genesis_entry_header
- genesis_before_entry_content
- genesis_entry_content
- genesis_after_entry_content
- genesis_entry_footer
- genesis_after_entry
If your custom file is hooking functions to any of those actions, it won’t have an effect by default. Instead of this:
add_action( 'genesis_entry_content', 'my_custom_function' ); function my_custom_function() { echo '<div>Test custom template</div>'; }You can do this:
add_action( 'genesis_before_while', 'my_book_hooks' ); function my_book_hooks() { add_action( 'genesis_entry_content', 'my_custom_function' ); } function my_custom_function() { echo '<div>Test custom template</div>'; }This hooks your custom functions after existing ones have been removed, which makes sure your functions run.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] The WooCommerce Product Page tabsHi, ueprod!
You could add a filter to your theme code: https://docs.woocommerce.com/document/change-number-of-products-displayed-per-page/
Or try a plugin such as Products Per Page: https://wordpress.org/plugins/woocommerce-products-per-page/
You’re welcome! Happy to help.
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after UpdatesGreat to hear! Thanks for letting us know you resolved this.
Forum: Plugins
In reply to: [Genesis Simple Share] Share Counts Zeroed Out after UpdatesHi, floridahikes. I see 938 Facebook likes on http://floridahikes.com/florida-trail-app: http://d.pr/i/W0hM
If you still see a zero count there, it’s worth whitelisting the site in any browser privacy add-ons you use, or checking in another browser.
Forum: Plugins
In reply to: [AgentPress Listings] "Sold" or "New Listing" banner on featured imageHi, oskikatt!
Do you see a field named “Custom Text” in the Property Details section below your listing? It should look like this: http://d.pr/i/mKgl
Filling that in should add text to the red banner for that listing.
Forum: Plugins
In reply to: [Genesis Simple Share] WaypointsSorry that you had to reapply the fix, srower. We do plan to resolve this issue, and have an open ticket here if you would like to track the progress: https://github.com/copyblogger/genesis-simple-share/issues/65
Forum: Plugins
In reply to: [Genesis Simple Share] Will you add whatsapp and email?Thanks for the feedback and kind words about the plugin, pangram!
I’ve passed on your vote for WhatsApp support and the option to remove the counts. I’m not sure if Genesis Simple Share will be expanded to add support for “sharing” by email and print, but there are some existing alternative plugins you could use if those are essential features for any of your sites. For example: https://jetpack.com/support/sharing/