hafman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Googlebot cannot access CSS and JS filesGoogle is not the ONLY search engine or robot out there is it? Plenty of malware bots like to dig around in admin and includes folders to see what’s what. I’m not treating this as an emergency
Forum: Fixing WordPress
In reply to: Googlebot cannot access CSS and JS filesI recently got the same emails from Google for websites that auto updated to WordPress versions 3.8.9 and 3.9.7 Neither are using a robots.txt file
I think it’s something related to WordPress updates. These sites will get updated to 4.2.3 soon but i haven’t touched them in ages.
Forum: Plugins
In reply to: [Event Calendar] A couple of code fixes for Eran Miller…Update: those issues i ‘reported’ were actually caused by the CategoryTinyMCE plugin injecting styles into the admin.php header. I’ll be taking that up with them so check CategoryTinyMCE support if you want to know more. My apologies.
Forum: Plugins
In reply to: [Event Calendar] A couple of code fixes for Eran Miller…Maybe someone should ask ‘Sumo Me’ some questions.
Q: What gives them the right to take ove a plugin, claim it’s compatibility with the latest WordPress (too many issues arising!) and use it to advertise a “Grow your wordpress blog” pipe dream plugin? It’s DECIDEDLY FISHY.
I’m reverting to an older version if possible because there ARE inconsistencies. Form fields are going missing, calendar only shows after 2x page refresh and some can’t save entries.
Just to say, i downgraded to version 4.0 of the plugin and the excerpts are back looking as they should on the front page of my site, which is running WordPress version 4.2.2.
I just reported exactly the same issue. Maybe you could add a condition of is_home() somewhere? I’m about to start digging myself.
Switching to an older version might also help. The fact that this all mucks up the front page of a wordpress site is quite unfortunate.
Forum: Plugins
In reply to: [Meteor Slides] Custom field shows on first slide onlyAn Update: Adding links to the slides makes the custom fields appear.
Forum: Plugins
In reply to: [Advertising Manager] Wrong smybols in textSame happening here. Isolated Advertising manager as the culprit.
If there are any in the text it shows as a question mark
Wordpress 4.1.1, Magazinium theme V3.Forum: Plugins
In reply to: [Simple Custom Post Order] Breaks Media Library!Same issue here, the media library has over 600 items, ordered oldest first (DESC) and won’t switch to ASC. I’m also noticing that categories are displaying quite randomly too in Posts > Categories.
WordPress 3.8.3
Magazinium themeForum: Plugins
In reply to: multiple highlighted category list for single.php!Behold, the solution…
<?php $cat_args = array( 'orderby' => 'name', 'order' => 'ASC' ); $categories = get_categories($cat_args); foreach($categories as $category) { if ( in_category( $category->term_id ) ) { ?> <li class="cat-item current-cat cat-item-<?php echo $category->term_id; ?>"><a title="View all posts filed under <?php echo $category->name; ?>" href="<?php echo get_category_link( $category->term_id ); ?>"><?php echo $category->name; ?></a> </li> <?php } else { ?> <li class="cat-item cat-item-<?php echo $category->term_id; ?>"><a title="View all posts filed under <?php echo $category->name; ?>" href="<?php echo get_category_link( $category->term_id ); ?>"><?php echo $category->name; ?></a> </li> <?php } } ?>Ronald Reagan face.
Thanks for investigating! I really appreciate it.
It’s maybe nothing that upgrading core and plugins won’t cure. The site in question is sorely in need of that 😉
Forum: Plugins
In reply to: [Meteor Slides] Adding a toggled pause buttonIf anyone’s following this thread, you need to define your instance of jQuery cycle as ‘slideshow’ using a variable at this point…
// Setup jQuery Cycle var slideshow = $j('.meteor-slides').cyclethat got it going for me
and don’t forget to switch this
jQuery('#toggle')for this$j('#toggle')Forum: Plugins
In reply to: [Sociable] Linkedin Share doesn't show thumbnails or snippetThis is doing the same in Facebook for me, just a grey box.
Forum: Plugins
In reply to: [Featured Video Plus] How do i loop video and remove controls?Tinkering report which may contain useful info:
I edited the plugin code very slightly for the time being. Adding
autoplay="autoplay" loop="true"to the video tag on line 79 of php/general.phpThis works ok In Firefox, Safari and Chrome for Mac OS X
On Windows (XP in Parallels):
Firefox, works very well
Chrome, ok but webm looks blotchy and the crossfade is reversed and fades to black ??
IE 8, default featured image not loading, it tries to play the video and black rectangles are gracefully shown.Forum: Plugins
In reply to: [Featured Video Plus] How do i loop video and remove controls?Wow that”s great and thanks for the pointer. I’ll have a tinker in the meantime.