carpty
Forum Replies Created
-
Forum: Plugins
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] Can’t insert linksOk Seems the problem is Guttenberg. I installed classic editor plugin and it now works again
It used to work with Guttenberg… Very odd
I think you might be on to something with the latest WordPress update as I think the packages i used were pre-updates on the websites that were ok and I think the ones with the issues i think i may have updated to the latest WordPress before I built the packages
- This reply was modified 7 years, 4 months ago by carpty.
Hi Cory thanks for the reply and the plugin
It’s a strange one as I moved 2 sites onto the same hosting (as my current hosting is expiring soon) the first two sites went fine.
the next site I had the database error. I figured it out, as the database name user and password were from the original host’s database. so changed them in the wp-config.php why wouldn’t the plugin change them?This site with the 404 error to the wp-admin seems to have sorted itself out I can now log in. but I need to move another website.
So what would cause the database not to change the details when I added them correctly and tested it before I moved on to the next step :/
cheersForum: Plugins
In reply to: [ScrapeAZon] Several iframes on the same pageHi I’ve tried to add multi reviews on the same post, and it only works if I uncheck the defer to the footer.
This is the code i’m using [scrapeazon asin=”B00HPCF5VU” width=”500″ height=”400″ border=”false” country=”US”]- This reply was modified 7 years, 5 months ago by carpty.
Forum: Plugins
In reply to: [ScrapeAZon] Can you use this with thrive content builder?Ok i worked it out using the custom html on thrive builder ??
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Redirection to unknown siteTry prourls.com with the plug-in Amazon link localizer. it’s what I’m using and it’s free, easy to use. it looks like Amazon now (called OneLink) allow you to localise USA Canada and UK under the 1 tag. I’ve not used it yet.
Forum: Plugins
In reply to: [Autoptimize] Eliminate Render Blocking CSSHey guys,
Could you help with a couple issues I’m having in pagespeedYour page has 2 blocking script resources and 1 blocking CSS resources. This causes a delay in rendering your page.
Remove render-blocking JavaScript:
…-includes/js/jquery/jquery.js?ver=1.12.4
maps.google.com/maps/api/js?v=3.exp&key&ver=4.7.2
Optimize CSS Delivery of the following:
wp-content/cache/autoptimize/css/autoptimize_56b47179ee6f917ebc10e3204d1c271d.css
I have autoptimize installed
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Not working with pretty linksHi there,
I’ve removed the plugin at the moment, but thanks for fixing the issue. ??Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Not working with pretty linksHi ok, thanks
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Not working with pretty linksHi, ok i’ll send you the link via pm on here for you to check out?
Ok don’t think you can send pms on here…
here’s the link https://carpfishingtips.net/deeper-fish-finder-review/
towards to bottom of the page there are a couple of amazon links
thanks
- This reply was modified 8 years, 2 months ago by carpty.
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Not working with pretty linksOk, sadly no joy with that, i just put /Amazon/ as the slug but it’s not being redirected, still sends me to the Uk store…anything else i can try?
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] Not working with pretty linksOh i see. the only problem is they ain’t all the same, i’ve put the product name on some and other words on others. so does that mean i need to make them all the same in pretty links?
edited to add. i reread what you put, and i should be ok as they all start with amazon, so would only need to put that in as the slug!
thanks.
- This reply was modified 8 years, 2 months ago by carpty.
Forum: Themes and Templates
In reply to: [Basic] Read more being added to the end of pemalink post nameYes i just found that thank you:) sorted it by adding
function slug_remove_morelink(){
remove_action( ‘basic_after_post_excerpt’, ‘basic_the_more_link’ );
add_action( ‘basic_after_post_excerpt’, ‘slug_add_morelink’ );
}
add_action( ‘init’, ‘slug_remove_morelink’, 20 );function slug_add_morelink() {
do_action( ‘basic_before_more_link’ );
?>
<p class=”more-link-box”>
” title=”<?php the_title_attribute(); ?>”><?php _e( ‘Read more’, ‘basic’ ); ?>
</p>
<?php
do_action( ‘basic_after_more_link’ );
}