Tran Cuong
Forum Replies Created
-
Forum: Reviews
In reply to: [Follow Nofollow Control] generated 500 internal server errorsPlease download the latest version here
Forum: Plugins
In reply to: [Follow Nofollow Control] not workingcashing? Do you mean caching? Can you post your sites here so I can learn more about the problem?
Forum: Plugins
In reply to: [Follow Nofollow Control] Not workingYes. This plugin affects only post content. For widgets, it cannot be done because it cannot. Please read this:
https://wordpress.stackexchange.com/questions/10344/how-to-add-a-filter-to-all-widget-outputTo make links in menu nofollow, please use this:
https://codex.www.ads-software.com/Defining_Relationships_with_XFNIn menu screen, open Screen Options and check Link Relationship (XFN), and set this field is nofollow in each your menu link.
Forum: Plugins
In reply to: [Follow Nofollow Control] Follow Nofollow Control and fatal errorsYou’re welcome.
Forum: Plugins
In reply to: [Follow Nofollow Control] Follow Nofollow Control and fatal errorsIt’s nearly same as which you downloaded from WordPress repository, but with a little fix the error. However I haven’t uploaded to WordPress repository yet.
Forum: Plugins
In reply to: [Follow Nofollow Control] Follow Nofollow Control and fatal errorsTry this update. Thanks for feedback. ??
https://withemes.com/follow-nofollow-control.zipForum: Plugins
In reply to: [Follow Nofollow Control] How do I check if it works?You are welcome. ??
Forum: Plugins
In reply to: [Follow Nofollow Control] How do I check if it works?Could you tell me where’s the top table come from? It’s a shortcode or some plugin? If you try to put a link in the post content, you’ll see tt’s nofollow. If the link is outside the content, my plugin doesn’t affect it at all.
Forum: Plugins
In reply to: [Follow Nofollow Control] How do I check if it works?Very Simple. There’re 3 ways:
1/ Ctrl U or Right Mouse -> View Source and you’ll see your links.
2/ Right Mouse -> Inspect Elements and check your links
3/ Ctrl + S to save your site in HTML form. Open the HTML file in some editor (eg, Notepad, Dreamweaver) and find your links. Check it.Forum: Plugins
In reply to: [Follow Nofollow Control] Pages with just shortcode cause errorsCould you show me the detail error lines? Was it normal for other pages like single page, category page?
Forum: Plugins
In reply to: [Follow Nofollow Control] Doesn't work with Amazon affiliate linksThis plugin works only with links that’s in part of the post. It may omit some affiliate links. Show me your site, I’ll try to upgrade to fix your problem.
Forum: Fixing WordPress
In reply to: WP_Query, query satisfies a custom field and sorted by other valuesOh, thank you. I found the answer for myself
$args = array( 'showposts' => 20, 'offset' => $offset, 'cat' => $category->term_id, 'order' =>'DESC', 'orderby' => 'meta_value_num', 'post__not_in' => array($exclude_id), 'meta_key' => '_view_count', 'meta_query' => array( array( 'key' =>'_label', 'value' => 'product' ) ), 'post_type' => 'post', 'post_status' => 'publish', 'suppress_filters' => true ); query_posts($args);