Tom Herod
Forum Replies Created
-
I figured it out:
.rt-detail .post-meta .read-more a {text-decoration: none;}
Thanks.
Tom
That did the trick! I appreciate your help semrocc. You are the man. ??
Works great for the admin panel. Sorted like a champ.
I’m trying to get it to sort my blog posts by expiration date.
I’ll play around with it.
Hi semrocc,
I put your code in functions.php in my child theme and it has no effect. The plugin is great but I still haven’t found a way to reliably sort by the expiration date.
/* Sort posts by expiration */
function sort_query_order( $query ) {
if ( is_admin() && $query->is_main_query() ) {
$query->set( ‘meta_key’,’_expiration-date’ );
$query->set( ‘orderby’,’meta_value_num’ );
$query->set( ‘order’, ‘ASC’ );
}
return $query;
}
add_action( ‘pre_get_posts’, ‘sort_query_order’ );Forum: Plugins
In reply to: [WooCommerce] Woocommerce stuck in sandbox modeI was using the Paypal Gateway and had the Braintree Gateway also displayed in the Gateway Display Order. I removed the Braintree Gateway completely and my problem disappeared.
Worked for me.
StaciMarie13,
Did you ever get this issue resolved? I am having the same error now.
Any help would be appreciated.
-Tom
Forum: Plugins
In reply to: [EasyRecipe] [Plugin: Easy Recipe] No comment & ratings boxCan you publish the fix for this problem? I am experiencing the same issue.
Forum: Installing WordPress
In reply to: How To Change Database Name For InstallNever mind. Got it all figured out using PhpMyAdmin
I gave up and put my subscription form on a separate page. It worked out fine. Thanks.