WebberZone
Forum Replies Created
-
Forum: Plugins
In reply to: [Contextual Related Posts] Sidebar related posts all bunched togetherYou can use your own CSS for the widget.
Use
.crp_related_widgetfor styling purposesPlease see: https://ww.wp.xz.cn/support/topic/crp-widget-css?replies=4#post-7596043
This has been resolved in the current development release in the Github repo and will be available in the next version.
Forum: Reviews
In reply to: [WebberZone Top 10 — Popular Posts] Just what I neededThank you for the review!
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] No data in widgets are shownThank you for checking and testing the github version. I am glad that it works with polylang!
Forum: Reviews
In reply to: [Contextual Related Posts] An excellent plugin, does its job wellThank you for the review and 5-star rating!
Forum: Plugins
In reply to: [Contextual Related Posts] Related posts based on other fieldWhat error did you get with this code. I’m not sure what the code above done and I’m not in a position to test it and customise it.
function crp_bsearch_posts_where( $where ) { global $wpdb, $post; $string = WPSEO_Meta::get_value( 'focuskw', $post->ID ); return $where . " AND ( $wpdb->postmeta.meta_key = '_yoast_wpseo_focuskw' AND $wpdb->postmeta.meta_value = {$string} ) "; } add_filter( 'crp_posts_where', 'filter_crp_posts_where' );Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Thumbnail size editIt won’t be removed. The new release will have this bug fixed
Forum: Plugins
In reply to: [Contextual Related Posts] Related posts based on other fieldAre you using this code to display your related posts and are looking to filter this further? Or are you using CRP as the base?
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Thumbnail size editHi, can you test using the latest master in Github?
https://github.com/WebberZone/top-10
I fixed a couple of things in the plugin thumbnail settings. Alternatively grab and replace the latest includes/media.php file in the repo
That shouldn’t be because of the cache. Can you confirm what version of mySQL you have and if wp_posts tables are isam.
Forum: Plugins
In reply to: [Contextual Related Posts] Related posts based on other fieldI’m not sure as to what the solution would be. What was the error you got with the piece of code?
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] AMP SupportPlease see a relevant thread for another plugin I author and what a user did for displaying links.
https://ww.wp.xz.cn/support/topic/crp-related-posts-for-amp-plugin?replies=5
I’m still not clear how to get them to track. Does the AMP plugin strip out any JS code? One thing worth trying is this code in your functions.php https://gist.github.com/ajaydsouza/e4637ebb9df9158fc5a9
Forum: Plugins
In reply to: [Contextual Related Posts] CRP Related Posts for AMP PluginMy idea was to filter ‘post_link’ which is from https://developer.ww.wp.xz.cn/reference/functions/get_permalink/
For your code above, what does a full URL look like?
I thought about adding a hook earlier, but since I’m using the_permalink I didn’t feel the need for this
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] More than 10 listings in admin pageHi, do you mean the one you see on the WordPress dashboard, i.e. /wp-admin/ ?
That is fixed at 10 posts and when you click the link you’d go to the View popular posts page to see the full list.
Forum: Plugins
In reply to: [Contextual Related Posts] How to center styled div?Hi, I looked at the site. the issue with this layout is the floating that doesn’t respect the proper centering.
A workaround worth trying is:
.crp_related ul { margin-left: 75px !important; }Change the 75px to what you would see fit.