Jason Paul
Forum Replies Created
-
I went as far as uninstalling W3 Total Cache. Still no success.
I uninstalled Yoast and still had the Pinterest problem. I’ve gotten rid of the Fout-b-gone JS (which never worked anyway) and that didn’t help either. Let me know if I should try anything else.
I’m not doing any work on the site. The bookmarklet works fine.
Sure: https://www.trasaterra.com/2012/09/type-explorations/
If you scroll to the bottom and find the Jetpack dropdown and click pinterest the only image i have an option to Pin is the featured image…which doesn’t even appear on the post!Forum: Fixing WordPress
In reply to: wp_query orderby random not workingI was developing a site on WP Engine. They actually disable the Orderby Rand Function. If you happen to be using WP Engine, in the dashboard area they put in the WP Admin go there scroll down and make sure the Orderby Rand function is not disabled. You would not believe what I went through before I deduced that it was the host causing the problem.
Forum: Fixing WordPress
In reply to: wp_query orderby random not workingForgot to add notify on this.
Forum: Fixing WordPress
In reply to: wp_query orderby random not workingI’m having quite a time with this too. Nothing I try with WP_Query will output a list of random posts. Any additional advice? Here’s What my code looks like:
<?php global $wp_query; query_posts( array_merge( $wp_query->query, array( //'order' => 'ASC', //'orderby'=>'rand', 'none', 'posts_per_page' => '3', 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => array( 'featured'),// exclude media posts in the news-cat custom taxonomy 'operator' => 'IN') ), ) ) ); ?> <?php if (have_posts ( $query_string . "&orderby=rand" )) : while (have_posts()) : the_post(); ?>
@zack I went with this patch to a similar plugin (that had a similar problem to yours). https://www.ads-software.com/support/topic/plugin-rich-tax-description-editor-problem-with-custom-taxonomy?replies=3
The project I needed it for is wrapping up so I’m not too keen on trying yours out at the moment but will next time it comes up!
For sure!
If anyone can remember how to get a field from another page. In my case I actually need to retrieve the field from another taxonomy on a template. I recall seeing that in the docs yesterday…and now I think I need it :/Here’s some repeater code:
<?php // using normal array $rows = get_field('highlight_work'); if($rows) { echo '<div class="upcoming-image-block">'; foreach($rows as $row) { echo '<div class="upcoming-image"><img src="' . $row['upcoming_images'] . '" alt="'; echo the_title() .'" class="dwzoom" />'; echo '</div>'; } echo '</div>'; } ?>
yikes…me too. I wonder how long its been down.
Thanks for providing this fix!! Hopefully it gets committed to the plugin soon.
I’m running the WordPress 3.3.2 and Rich Text Tags 1.5.2 and the rich text editor is not showing up in the Taxonomy term description
I ended up deleting all unnecessary plugins, but this was the culprit as far as I can tell from the report (and I’m nearly positive it was kept up-to-date)
/plugins/onswipe/framework/thumb/thumb.php
ah, i just looked over the security report again and it turns out I misread and the bad TimThumb was in a plugin. Feel free to delete this thread