Texiwill
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] error on line 2 at column 6Check your functions.php or some other file for a blank line after your closing
?>.Forum: Plugins
In reply to: [Captcha] get_plugins every call?Hello,
captcha.php:1541:add_action( 'after_setup_theme', 'cptch_contact_form_options' );This is added as an action and forces a call after every theme load, not just on a theme update. Every time there is a comment on the system get_plugins appears to get called. We see this being called anytime there is a comment on the system. We are using New Relic to look at transaction traces. The Admin user is just not involved at this time.
Hello,
feed-them.php:60: $load_fts->fts_get_check_plugin_version('feed-them-premium.php', '1.3.0');This is called outside of admin screens….
found it, something to do with the cache I was using… Fixed.
Hello,
I am still getting this problem. Any chance you can share the fix so I can see if what is really happening?
Best regards,
EdwardForum: Plugins
In reply to: [Register Plus Redux] Google Analytics for WordPress ConflictThis seems fixed in the next release (5.0.4) of Google analytics…
Forum: Plugins
In reply to: [TAB SLIDE] 2.0.3 is Broken… seriouslyOkay found the problem with this, it was this plugin with another interacting, fixed the other and things now work. a return of ‘false’ was being ignored by the hook code for some reason but works on another site. The problem is still that you cannot hook more than ONE filter when you may need to hook multiples.
This is resolved for now.
Forum: Plugins
In reply to: [TAB SLIDE] No content displaying and displaying on load even when disabledHello,
I found the problem with my site and have a fix… Tab slide hooks ‘the_content’ but on my site, index pages do not use ‘the_content’ instead they use ‘the_excerpt’ so I modified tab_slide to also hook ‘the_excerpt’ and remove the hook as done for the_content. Now with both hooked, tab_slide appears everywhere desired.
Not all themes are the same and this should cover theme differences where the_content is not called on an index but the_excerpt() is.
I tried to hook wp_footer but that did not work very well.
Best regards,
EdwardForum: Plugins
In reply to: [TAB SLIDE] No content displaying and displaying on load even when disabledHello,
I just tried this once more and no it does not display the content of the tab slide w/2.0.1 in use.
I use the ‘Widget’ approach with no luck at all on the latest code.
Best regards,
EdwardForum: Plugins
In reply to: [TAB SLIDE] No content displaying and displaying on load even when disabledHello,
There are no PHP errors at all. So that is not the cause. And yes, I can understand why a PHP error would cause issues. Also, jquery or php mode the tab slide works just fine in the previous version.
What it looks like is the widget code is not getting called.
Best regards,
EdwardForum: Plugins
In reply to: [TAB SLIDE] No content displaying and displaying on load even when disabledHello,
I have the same issue, but if you switch from one widget to custom and back again, then the problem fixed itself. I was getting error_log errors wrt to not able to load a file. This may be a database issue. Also, the widget name has changed so the content had to be re-added.
However, even after fixing that issue, the tab would not display. When I went back to the previous version the same thing happened but I also noticed two things:
1) My widget content had disappeared as the widget names are different
2) The PHP or jQuery option had no selectionOnce I made a selection the widget worked once more. So my thought is that the PHP or jQuery option which is not present in 2.0 is really needed within 2.0 to make the tab actually work.
Thoughts?
EdwardForum: Themes and Templates
In reply to: [Carton] responsive video wrap not working properlyUnfortunately this still does not work. The problem is flash objects, not everyone is a ‘video’. Removal of the height and width on these objects makes them disappear completely not grow with the screen.
This is unfortunate. 🙁
Perhaps instead you should recompute the height/width based on the aspect ratio of the object and the aspect ratio of the window and the objects above it in the stack. For example, sometimes pages use tables so the aspect ratio of the enclosing element may not actually be the window…. just a thought here. I can show you the issue I see but would need to redirect you privately (development site).
I can email you separately just let me know a subject to catch your eye.
Best regards,
Edward HaletkyForum: Plugins
In reply to: [SH Contextual Help] Conflicts with WordPress Firewall 2 pluginsorry meant add_settings_link needs to change to sh_add_settings_link in two places.
Forum: Plugins
In reply to: [Ultimate TinyMCE] Latest Update Brings Load Time of Website to a CrawlThis issue did not go away as the wp_footer action to constantly call Amazon S3 was not removed. My security systems actually picked it up as an attack….
SOlution:
Comment out the following in main.php:
#add_action(‘wp_footer’, ‘jwl_rocket_button’);
Which solved the problem for me… Not sure why you need to go to S3 everytime the site is loaded… Could we not cache things or have an option to disable?
-Edward
Hello,
Check your robots.txt, this is normal for my site, I block certain locations from crawling as they are administrative and not for the general public. Most likely you have a link to the content somewhere else on your site.
Best regards,
Edward L. Haletky