Title: Vulcain's Replies | WordPress.org

---

# Vulcain

  [  ](https://wordpress.org/support/users/guaranis/)

 *   [Profile](https://wordpress.org/support/users/guaranis/)
 *   [Topics Started](https://wordpress.org/support/users/guaranis/topics/)
 *   [Replies Created](https://wordpress.org/support/users/guaranis/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/guaranis/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/guaranis/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/guaranis/engagements/)
 *   [Favorites](https://wordpress.org/support/users/guaranis/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/guaranis/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/guaranis/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Regenerate & Select Crop] Sorry, you are not allowed to access this page.](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/#post-18100690)
 * There is a conflict between your plugin and Hubbub lite. I sent a question in
   their support with no answer. It will be great to check from your part to see
   which plugin needs to be updated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Regenerate & Select Crop] Sorry, you are not allowed to access this page.](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/#post-18083969)
 * I found the problem, and it is caused by “Hubbub Lite” plugin. I have contacted
   them.
 * Thanks for your support, great plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Regenerate & Select Crop] Sorry, you are not allowed to access this page.](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-238/#post-18079601)
 * Yes, I tried logout/in, disabling, deleting the plugin and reinstalling.
   I disabled
   the security plugin but I still have the same.This is strange because it was 
   working, it is installed in 10 sites in the same server with the same plugins
   and it is working on 1.Yes 1, so I am trying to see why this one is working.I
   am using cyberpanel with openlitespeed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz GDPR/CCPA Cookie Consent Banner] Google maps error with integration](https://wordpress.org/support/topic/google-maps-error-with-integration/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/google-maps-error-with-integration/#post-17829801)
 * I already said in the first comment that it is working when I disable the integration
   for the service but you should correct by adding an addslashes to your code.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] php 8.2](https://wordpress.org/support/topic/php-8-2-22/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/php-8-2-22/#post-17418828)
 * I tried this version and it doesn’t trigger any error for what I see with php
   8.2
 * However I don’t use it anymore because there are no results without API, just
   the category.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] Contextual Ads no longer working](https://wordpress.org/support/topic/contextual-ads-no-longer-working/)
 *  [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/contextual-ads-no-longer-working/#post-17347302)
 * The function return only the url, not the title and not working with the search:[
   amazon_auto_links search=”WordPress”]
 * For now I have disabled the plugin and use the shorcode already in my posts with
   my own function that does the same, display the link.
 *     ```wp-block-code
       function amazon_auto_links($atts) {
       	if (isset($atts['asin'])) {
       		$asin = $atts['asin'];
       		$div = '';
       		$tag = 'bookmag03-20';
       		if (strstr($asin, ',')) {
       			$asins = explode(',', $asin);
       			foreach ($asins as $asin) {
       				$div .= '<div class="amz-container"><a href="https://www.amazon.com/dp/'.$asin.'?tag='.$tag.'" target="_blank" rel="nofollow noopener">Check Price On Amazon</a></div>';
       			}
       		} else {
       			$div = '<div class="amz-container"><a href="https://www.amazon.com/dp/'.$asin.'?tag='.$tag.'" target="_blank" rel="nofollow noopener">Check Price On Amazon</a></div>';
       		}
       		return $div;
       	}
       }
       add_shortcode('amazon_auto_links', 'amazon_auto_links');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] Contextual Ads no longer working](https://wordpress.org/support/topic/contextual-ads-no-longer-working/)
 *  [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/contextual-ads-no-longer-working/#post-17346626)
 * Did you find a solution to have the contextual, search, url, shortcode to work
   again with the text template?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] Contextual Ads no longer working](https://wordpress.org/support/topic/contextual-ads-no-longer-working/)
 *  [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/contextual-ads-no-longer-working/#post-17329349)
 * For what I see SiteStripe has removed images but not the text link.
 * Why it is not possible to use the contextual ads with the text template?
 * Also all links using the shortcode are not working either.
   [amazon_auto_links
   asin=”B0BLP1HYDS”]
 * Same here, I have updated the settings default to take the text template that
   has no image but nothing is returned.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AdRotate Banner Manager] Widgets not working](https://wordpress.org/support/topic/widgets-not-working-46/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/widgets-not-working-46/#post-17174600)
 * OK, it is working in widgets when I select the block “Adrotate” and the group
   id.
   I was using the block “Adrotate Group” and selecting the group id here is
   not working.Since the first block is working, that’s fine, I will switch from
   the Adrotate group block to the Adrotate block.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Load Filter] plf_queryvars](https://wordpress.org/support/topic/plf_queryvars/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/plf_queryvars/#post-16212074)
 * Wow, I had 178kb on autoload in the plf_queryvars and now less than 3kb with 
   the vars and options. Good job, you have now the best plugin.
 * On thing, try to add the word “disable plugins” somewhere in your description
   because this is the keyword I use to find such plugins and yours was quite difficult
   to find in the repository.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AffiliatePages - Pros & Cons, Notice, and CTA Blocks for Affiliates] Amazon images](https://wordpress.org/support/topic/amazon-images-5/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/amazon-images-5/#post-16189877)
 * ok, I am not sure if I was blind or you have included it in your last updade 
   but now I see the html code for the image. pretty good.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPS Cleaner] Content analysis in progress in media for 8 hours](https://wordpress.org/support/topic/content-analysis-in-progress-in-media-for-8hours/)
 *  [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/content-analysis-in-progress-in-media-for-8hours/#post-16155794)
 * Same here and now. no answer, no update.
    the content analysis is in progress
   forever. I tried this plugin to remove unused images and it does not work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] Add Unit by Category not working](https://wordpress.org/support/topic/add-unit-by-category-not-working/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/add-unit-by-category-not-working/#post-16088146)
 * Also, this is the result in the page
 * [https://ibb.co/N3VHRfk](https://ibb.co/N3VHRfk)
    [https://ibb.co/gVN1dq7](https://ibb.co/gVN1dq7)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Amazon Links - Amazon Associates Affiliate Plugin] Add Unit by Category not working](https://wordpress.org/support/topic/add-unit-by-category-not-working/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/add-unit-by-category-not-working/#post-16087791)
 * the local is US.
 * In the add unit by category, I can see products on the first page but if I refine
   on any other category, there is nothing.
 * [https://ibb.co/xYzLwms](https://ibb.co/xYzLwms)
    [https://ibb.co/3S7pvDT](https://ibb.co/3S7pvDT)
    -  This reply was modified 3 years, 11 months ago by [Vulcain](https://wordpress.org/support/users/guaranis/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AdRotate Banner Manager] Import in the free version](https://wordpress.org/support/topic/import-in-the-free-version/)
 *  Thread Starter [Vulcain](https://wordpress.org/support/users/guaranis/)
 * (@guaranis)
 * [4 years ago](https://wordpress.org/support/topic/import-in-the-free-version/#post-15972086)
 * I did a csv import directly in phpmyadmin and that worked perfectly well.
    I 
   want to try with a thousand ads that I was using with an old software Ad manager
   pro (non wordpress)
 * thanks for the info anyway.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/guaranis/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/guaranis/replies/page/2/?output_format=md)