svsdnb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query Date Array To Display Future Events OnlyI was able to convert ACF’s date to YYYY-MM-DD and used this code however it’s returning all “Events”
$args = array( 'post_type' => 'events', 'post_status' => 'publish', 'posts_per_page' => '10', 'meta_query' => array( 'key' => 'event_date_ends', 'compare' => '>=', 'value' => date(Y-m-d), 'type' => 'DATE' ), 'orderby' => 'meta_value_num', 'order' => 'ASC', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ), );Forum: Plugins
In reply to: [The Events Calendar] How can I remove iCal linksBad but useful when the plugin tutorial doesn’t work. I started out liking this plugin but now not happy with how I can’t deliver the content applicable to me.
Forum: Plugins
In reply to: [WP Super Cache] Blank White Screen After Turning OnIf this were on my personal site I’d have waited longer but it was on a business site and wasn’t sure what was going on.
Forum: Plugins
In reply to: [Plugin: Print Friendly and PDF Button] Custom CSS not workingFirst of all, I’m just following their instructions as they provided where they put !important outside of the semi colon.
Secondly, again per their instructions this is placed in it’s own style sheet called printfriendly.css.
Thirdly, thanks for being abrasive and a douche in a 2 month old thread.Forum: Plugins
In reply to: [Relevanssi - A Better Search] Results not searching TagsThere was an option to turn it on and I missed it. Works great now.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] WordPress 3.9 RC1 and disappearing TinyMCEi’m using ACF 4.3.8 and WP 3.9.1
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] WordPress 3.9 RC1 and disappearing TinyMCEMy WYSIWYG is missing with 3.9. please help!
Forum: Themes and Templates
In reply to: [Sparkling] Order posts by title ASCThis worked perfectly! Than you!
Forum: Themes and Templates
In reply to: [Sparkling] sidebarI believe it’s a right sidebar only theme. You would have to reposition the sidebar to the left or adjust to add the sidebar to both sides. Personally I’d go with another theme at that rate.
Forum: Plugins
In reply to: [Search & Filter] How to seach Custom Post MetaYou had me until I read this. Back to research….
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Custom Fields Not Showing UpPerfect. Thank you!
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Custom Fields Not Showing UpI was able to add in a no display div class to the template file that recalled the custom field data so that this now populates in the print version.
So my only issue/question left is why the images that are viewable in the Print preview aren’t available in the PDF download.
I have Images = Include selected in the settings.
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Custom Fields Not Showing UpAnd also, how would one incorporate info in the header into it. My header calls some of my custom field data as well. I’d hate to write in a no display class to 200 pages just to get that data in there.
Thank you.
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Custom Fields Not Showing UpThis worked except in the PDF version the featured image is not added but the alt text. The image is displayed in the Print preview however.
Forum: Fixing WordPress
In reply to: Use Pagination with showing child pages?I was able to to achieve this by using the following:
<?php $listingPages = get_posts( array( 'child_of' => '7', 'meta_key' => 'Type', 'post_type' => 'page', 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC', 'posts_per_page' => '20', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ), ) ); foreach( $listingPages as $page ) { $content = $page->post_content; if ( ! $content ) // Check for empty page continue; $content = apply_filters( 'the_content', $content ); ?>I don’t think the child_of actually worked but using the meta_key queried the pages I needed as only those pages wanted had that meta data. I’m sure you can adjust to your configuration so this may help someone.