jodamo5
Forum Replies Created
-
Thanks so much. I’ve just sent the information.
You’ll need to change your hosts file to look at it. (Otherwise you’ll see the old/current site).
Hosts file info:
192.163.254.29 hamiltoneyeclinic.co.nz https://www.hamiltoneyeclinic.co.nzForum: Plugins
In reply to: [User Meta Display] Please show a front-end screenshotGotcha. Thanks.
Sorry, I’ve just seen that the page I included the link for didn’t actually show up.
Here’s the test page I set up:
https://www.pressureball.com/site/test-video/There are 2 videos on there. The first one uses the API technique. It DOES have a URL, but only after the javascript runs. The javascript creates an iframe, just like a normal iframe, but also listens to YouTube for clicks.
But I’ll have a look at that tag manager article. Thanks.
I just found an alternative way that would mean we don’t need to use the YouTube API code, but instead could just use FluidVids as is and still track all clicks. However I couldn’t get it to work on my site. But you could have a look and it might be an easy add-in for your plugin – https://www.lunametrics.com/blog/2012/10/22/automatically-track-youtube-videos-events-google-analytics/
The code for Ukraine is UA according to the ISO 3166 list, so it shouldn’t mess with Ukraine settings? https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
But just a note on the FAQs page will probably suffice. That way you could leave it as is, and new users will know that United Kingdom is UK.
Forum: Plugins
In reply to: [WP SEO Redirect 301] Am I doing something wrong?I’ve tested it on three different themes, and it’s not working on any of them.
I’ve tested it on a site using the Genesis framework. Minimum Pro theme – https://my.studiopress.com/themes/minimum/
And on a site using Canvas theme from Woothemes (multisite set up)
And on a site using the standard TwentyFourteen theme (multisite setup).
And it’s not working on any of them.
Forum: Plugins
In reply to: [Collapse-O-Matic] Scroll to trigger and 150px further?Hi Baden. I’ve just checked out the spacedonkey demo link you pasted, but the offset doesn’t seem to work. The trigger text is still hidden behind the top navigation bar when you close it. Both for the ‘R2D2 Wiki’ trigger and the ‘Close-n-Scroll Auto’ trigger.
I purchased the pro version, and entered a default offset value, but this doesn’t seem to work for the scroll-to-trigger
I tried adding offset=”150″ into the internal oollapse trigger, but it doesn’t handle that.
On your documentation site under the “Internal Collapse Trigger & Scroll On Close”, that’s what I’m trying to do, but have the trigger offset so it is still visible. On your documentation page it still has that same issue – the trigger ends up behind the top nav.
Also, in testing I just found that two other scrolls seem to have broken on your documentation page:
1) The scrollonclose=”auto” example now jumps to the very top of the page when it is clicked close. (It doesn’t do a jquery scroll, it just appears immediately at the top).
2) The findme=”auto” example under the “Findme attribute” heading also jumps to the top of the page when clicked.
So the “auto” seems to have broken.Forum: Plugins
In reply to: [WP SEO Redirect 301] Am I doing something wrong?Same issue here. I’m changing the permalink of a page and the plugin is not picking it up. Hope it can be fixed, because this plugin looks like just what I was wanting.
Forum: Plugins
In reply to: [Collapse-O-Matic] Scroll to trigger and 150px further?Hi Baden. Sorry, I intended to include the link. I was actually referring to your own page – https://plugins.twinpictures.de/plugins/collapse-o-matic/documentation/#ict-scroll-on-close
When I click the “close” button on that documentation page for the scroll-to-trigger example, it’s disorientating because when the scrolling stops the trigger is hidden behind the top navigation bar on your site, so you can’t actually see where you’ve scrolled to.
I checked the scroll-on-close function, but because my site is responsive, that won’t work when the page gets longer on smaller screens.
Will the offset function in your pro version work with scroll-to-trigger? But that I mean, if I set the offset to 150, will it scroll back up to the trigger and then 150px more so that the trigger is visible? Thanks!
Forum: Fixing WordPress
In reply to: Clicking on anywhere on Admin Screen opens Thickbox@kashann and @ironoxidey – I had the exact same problem. Turns out it was a problem caused by WP eCommerce. I upgraded to the the latest version and it solved the problem.
This forum topic discusses it here: https://www.ads-software.com/support/topic/tb_load-freezing-overlay-thickbox-on-pages-edit?replies=18#post-5475640
Forum: Fixing WordPress
In reply to: TB_Load Freezing Overlay ThickBox on Pages Edit@sergio174 – thanks for the tip about wp ecommerce being at fault. I upgraded WP ecommerce to the latest version and that is now fixed.
Forum: Plugins
In reply to: [Yoast SEO] Disable author/user sitemap not workingYep, same here. Hoping for a fix asap.
Forum: Plugins
In reply to: [Yoast SEO] Activating Yoast causing 500 internal server errorsI just had this same issue last night. I’m running WordPress 3.6.1. I installed Yoast. My website was working fine. I set up Yoast settings … everything seemed fine. Then this morning I checked my website to find it was showing an Internal 500 error for all public pages.
My site is installed in a subdirectory (/site/) but viewable in the root directory https://www.duoplus.co.nz (this works fine). But when the Internal 500 errors were happening, I could still get to the admin pages (which are still located in the /site/ directory). In the settings page I changed my site back to pointing at the /site/ directory and it immediately started working again. This raised my suspicions about the .htaccess file. Sure enough, for some reason it had reverted to the earlier edition (which doesn’t point at the subdirectory location).
To fix it I copied the .htaccess file from /site/ to root again. Change the site’s URL back to root, and it started working again. All my Yoast settings were wiped which was another weird thing.
So I’m not sure if Yoast was to blame, or something at my host. But everything was working fine last night, and Yoast was the only structural change I made. It’s working again now. Hopefully permanently!
Not sure if this helps, but I suggest looking at your .htaccess file.
Hi Photocurio. Thanks so much for that link.
I put that code in, but I don’t link how it puts the “read more” link on a new line underneath the excerpt. I really wanted it to be tagged on the end like the other “read more” tags.
And after much messing around, I’ve finally worked it out. So I’ll post it here in case others want to find the solution too.
In the advanced-excerpt.php file (inside the advanced excerpt plugin folder) find this code:
// Avoid custom excerpts
if (!empty($text) && !$no_custom)
return $text;
and replace it with this:
// Avoid custom excerpts (but still add read more)
if (!empty($text) && !$no_custom)
{ $text = $this->text_add_more($text, $ellipsis, ($add_link) ? $read_more : false);
return $text;}
What this does is tell Advanced Excerpt to still add the same “Read More” tag that you use for all other excerpts, even when a custom excerpt is used.
If there are any updates released for this plugin, you’ll just need to copy this code back in.