anoleimaging
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] End of TimeI guess it’s logical, but I’m not sure if it will completely solve the GA problem. Hypothetically, what if you schedule an event for two months from now, with nothing in between? Wouldn’t GA give errors for the blank dates in between? Just a thought.
BTW, it was a client that was freaked out by this ‘feature’. I didn’t see how it could ‘hurt’ their site… 😉
Forum: Plugins
In reply to: [The Events Calendar] End of TimeAdding events for the following month adds the link, but I don’t remember this happening before. Maybe this is to combat the Google Analytics 404 ‘bug’ ?
FitRV;
I’m impressed that you found that ‘loophole’ to get through this error, but is it any easier than re-entering your login info?
I have had this problem for a long time as well, and it seems to have been unsuccessfully addressed in this forum many times. I think it’s about time the WP people find a cure for this annoyance.
I don’t understand why WP needs to find a test cookie upon first arriving at the site, at any rate.
Good luck & please follow up, although it seems to be a lonely pursuit.
Forum: Plugins
In reply to: [The Events Calendar] Google Webmaster Tools 404Let us know when this plan is implemented. 8|
Sill ‘erasing’ hundreds of 404s…
Forum: Plugins
In reply to: [The Events Calendar] Google Webmaster Tools 404OK. Here is a curious thing: I have two different sites using this plugin, and only one shows up on Webmaster Tools having the abundance of 404s. They have both had the calendar for several months. The one that gets considerably more traffic has more 404s. The other has NONE.
Does this have to do with Google indexing the more popular one more? Or is there some other variable that could help untangle this situation?
Forum: Plugins
In reply to: [The Events Calendar] Google Webmaster Tools 404There are an ever-increasing list, that look much like this:
- {..}/events/2036-03-05/
No events have been entered past this year. 2036?!? 😉
Forum: Plugins
In reply to: [The Events Calendar] Google Webmaster Tools 404This is still happening, and the workaround seems to work only temporarily. 404s steadily grow to hundreds as google follows every date in the year!
Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Really Simple Twitter feed not updatingStill happening. Latest release. Please keep working on this.
Forum: Fixing WordPress
In reply to: Admin CSS being overwritten by Site CSSWell, it helps if you mean by that it gets rid of my css changes completely. 8|
Here is what was in the functions.php:
<?php // Remove the Adventure Journal parent style.css and add the child theme's style.css add_action( 'wp_print_styles' , 'mh_remove_parent_css' , 50 ); function mh_remove_parent_css() { wp_dequeue_style( 'theme' ); wp_enqueue_style( 'child-theme' , get_bloginfo( 'stylesheet_directory' ) . '/style.css' , '' , '' ); }I am not proficient with PHP. Is this something I can alter or replace to make my child css work properly?
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] jquerey error after wordpress 3.6 updateThank you!!! Life savers in this thread! 😉
Forum: Fixing WordPress
In reply to: Admin CSS being overwritten by Site CSSOK. ESMI, you’re right: it doesn’t occur with the parent theme.
So that means my child theme, which was working fine up until this point, has broken with 3.6. Back to the drawing board? What would cause them to overlap like that?
Forum: Plugins
In reply to: [Spiderpowa Embed PDF] Is there a way to size the window?Hope it’s not too late, but I have a way to re-size with this plugin.
Select ‘edit’ from the plugins page of your admin.
... function spiderpowa_embedpdf_shortcode($attr){ return '<embed src="'.$attr['src'].'" style=" height:500px; width:650px;"></embed>'; ...(The height and width attributes have been changed in this example, and I don’t remember the original height value. Width default is 100%)
I was able to change both attributes without interfering with the plugin’s functionality.
Hope it helps..
Forum: Themes and Templates
In reply to: Adventure Theme and The Events Calendar ConflictIt was the free version. And I’ve seen similar discussions of the Adventure theme bugs/issues in this forum.
Forum: Themes and Templates
In reply to: Child Theme Setup ProblemsWorks just ducky!! Thank you again. Solved!
Forum: Themes and Templates
In reply to: Child Theme Setup ProblemsThank you! I’m going to believe you unconditionally for tonight and test in the morning.
What you’re saying is kind of what I was suspecting: that Adventure Journal theme has some sort of coding obstacle in the way of a normal child theme work-around. I just had no idea where to start looking.
Again, I appreciate your help and I’ll report back when I implement the above.