Lucian Apostol
Forum Replies Created
-
Forum: Plugins
In reply to: [Auto Affiliate Links] Good addon, some ideas (my 2 cents)Wanted to let you know that I already implemented your first suggestion.
Forum: Plugins
In reply to: [Auto Affiliate Links] Good addon, some ideas (my 2 cents)Hello.
Thank you for using my plugin. Your feedback is truly appreciated. I will try to implement these features into the next version of the plugin. They will make a good addition.
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicHello.
From what I see on the screenshots attached, the keyword you set matches the title of the post. But that post does not have any content.
The plugin replaces keywords inside a post. If the post is too small it will not replace anything. If a post have very few chars, then it will be ignored.
If it is still not working on a regular post, send me a screenshot with your General Settings page.
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicYou can send screenshots of your database structure to contact [at] autoaffiliatelinks.com
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicCould you let me know what is the collation of your “automated_links” table in your database, and what is the collation of your “posts” table ?
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicDo you still have this problem or it has been fixed by the last update ?
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicCould you let me know what is the collation of your “automated_links” table in your database, and what is the collation of your “posts” table ?
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicDo you have access to your database ( trough phpmyadmin or other tool ) to check the collation of your mysql database tables ?
Forum: Plugins
In reply to: [Auto Affiliate Links] CyrillicHello.
Thank you for reporting this problem. The issue appear because the default collation of database tables is latin. This can’t work with Cyrillic alphabet.
I have released a new plugin version ( 4.9.7 ) where the data is forced to be utf8. To get this working you need to:
1. Deactivate the plugin
2. Delete the plugin ( with all data and files )
3. Download the plugin again ( make sure it is the newest version 4.9.7 )
4. Go to “General Settings” and make sure that “International Language Support” is checked
5. Come back and let me know if this worked.Forum: Reviews
In reply to: [Calotor Calorie Counter] Widget always goes to top of pageThe shortcode is [calotor]
Forum: Reviews
In reply to: [Auto Affiliate Links] Pllugin developers, please read/answerHello. I’ve already published a new version with the “no limit” feature for same keyword limit. I will investigate the issues with your setup and will try to come with a fix next days.
Forum: Reviews
In reply to: [Auto Affiliate Links] Pllugin developers, please read/answerHello. Thank you for using our plugin.
1. “Same keyword limit” is different from Link Frequency. Link frequency will limit the overall number of links added by the plugin into the content. Same keyword limit will limit the same keyword to be linked multiple times in the same article. For example if there are more occurrences of the same keyword inside an article, if same keyword limit is set to 1, then only the first occurrence will be linked. If same keyword limit will be set to 5, the same keyword will be linked 5 times in the same article. In the next plugin update I will add the option for “No limit” to “Same Keyword Limit”.
Link frequency limits the overall number of links added in each article. If it is set to Very Low it will add 1-3 links, Low will add 2-6, Average will add 3-9, High will add 4-12 and Very high 5-15. The number of links will depend on the post length. If the post is short, then it will be 1 for very low, 2 for low, 3 for average, 4 for high and 5 for very high. If the post is very long, there will be 3 for very low, 6 for low, 9 for average, 12 for high and 15 for very high.
If you want to manually set the limit, select “Custom” on Link Frequency and a new box will appear where you can add the maximum number of links that should be added.
2. I will add a new option to same keyword limit: “No limit”.
3. What is the message you get when you activate cloaked links and you click on them ?
Forum: Plugins
In reply to: [Auto Affiliate Links] Heading excludeHello.
On aal_engine.php , on line 99:
$reg = ‘/(?!(?:[^<\[]+[>\]]|[^>\]]+<\/a>))(?!(?:[^<\[]+[>\]]|[^>\]]+<\/h.>))\b($name)\b/ims’. $langsupport .’U’;
Change it to:
$reg = ‘/(?!(?:[^<\[]+[>\]]|[^>\]]+<\/a>))(?!(?:[^<\[]+[>\]]|[^>\]]))\b($name)\b/ims’. $langsupport .’U’;
Forum: Plugins
In reply to: [Auto Affiliate Links] Add links to custom fieldsI am sorry, I was in a hurry. I wanted to say that you can add the same filter when you show custom fields.
Forum: Plugins
In reply to: [Auto Affiliate Links] Add links to custom fieldsHello.
The plugin uses “the_content” filter to add links. The same function can be applied as a filter when showing custom posts, but there are 2 checks that need to be removed in order for the function to work.
There is a check that replace links only if it is the main loop, and if the content have at least 100 characters.