cybershot
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] TEXT EXCERPTS & SEOThere is a setting in page builder to copy page builder content into the editor. Do you have that checkbox checked?
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Using page builder results in white backgroundGlad you got it figured out.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Using page builder results in white backgroundIf I were you, I would contact woo themes and ask them for the assistance in changing the background. You can give them your site info in a secure way and they can figure it out
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] stop automatic row creationFirst it makes it look like an error. You cant set columns for that first row you have to delete it re-create it. If I don’t want to use the page builder for that particular page and just want to add a little bit of content and there will be this row affecting the page that if I don’t remember to delete can screw things up. Is there a line of code somewhere that I can delete that causes this default row?
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Using page builder results in white backgroundDo any of the images in your theme have a white background? This pagebuilder does not give the images a white background. It might be something in your themes css that is causing this issue. Do you know css? You could edit the themes css to take out any background color around images. You could also make sure the image you are uploading supports transparent backgrounds.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] problems with updateSpoke to soon. It did work. How does unchecking the box to copy the content into the editor affect the site? when I view the visual tab. it looks the same as it does with the box checked to copy the content into the editor.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] problems with updateNo, unfortunately that didn’t work. The shortcodes added to the WordPress content area do not get executed when there is content created by the page builder. My issue is that I need to create a scrolling page that would wrap all the pagebuilder content. I can’t do it by creating a template with the scrollbar. It has to be done with the shortcode.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] problems with updateWhat I wanted to do was add a short ode that would surround all the page builder content. It would be a shortcode that adds a scroll at to the page. With this new plug-in you’re suggesting allow me to surround all the page builder content with that short code?
Forum: Fixing WordPress
In reply to: making a one page site – problems loading templateit is a one page site. I am trying to get post, pages and templates and have been having trouble doing that. I have not tried the static page thing yet. I don’t see how it would be different. I will give it a try and see what happens tonight
Forum: Plugins
In reply to: [OptionTree] editing "Send To Option Tree" buttonI guess it just didn’t save correctly.
Forum: Plugins
In reply to: [WooCommerce] change currencyfound it. Thanks
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] get child category imageDo you have any idea how to paginate this setup? I have my code set up so that I have one main category called menu, under that, I have multiple child categories like breakfast, lunch, dinner, wine list each set up to have the MENU parent category. I have been able to get only 3 of the child categories to show but I have not been able to get the pagination working to show the wine list or any other menu item.
Here is my code
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $allcats = get_categories(array('child_of' => get_query_var('cat'), 'number' => 3,'order'=> 'asc', 'paged' => $paged)); foreach ($allcats as $cat) : $args = array( 'category__in' => array($cat->term_id), 'paged' => $paged, 'posts_per_page' => 5 ); query_posts($args); if (have_posts()) : echo '<div class="menupageContent">'; $terms = apply_filters( 'taxonomy-images-get-terms', '' ); if ( ! empty( $terms ) ) { foreach( (array) $terms as $term ) { if($term->term_id == $cat->term_id) { echo wp_get_attachment_image( $term->image_id, 'menu' ); } } } echo '<h3>'.$cat->name.'</h3>'; echo '<ul>'; while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; echo '</ul></div><!--end menupageContent-->'; ?> <?php else : echo 'No post published in:'.$cat->name; endif; wp_reset_query(); endforeach; ?>
Forum: Fixing WordPress
In reply to: trouble paginating get_categoriessorry about that, here is the link to the code
The only way I can seem to get the posts is by using the foreach loop at the top of the code. I believe I need to replace it with WP_Query in order to get pagination working. Every time I try to do that, I get nothing. the child_of doesn’t seem to work in wp_query.
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] get child category imageWorked for me as well, thank you.
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] get child category imageI thought maybe you can help me here. I am trying to get the child categories also but I am not having any luck. I tried your code above without any luck. Here is the query I am using, this is returning the posts exactly how I need them
$allcats = get_categories('child_of='.get_query_var('cat')); foreach ($allcats as $cat) : $args = array( 'posts_per_page' => 3, // max number of post per category 'category__in' => array($cat->term_id) ); $customInCatQuery = new WP_Query($args); if ($customInCatQuery->have_posts()) : echo '<div class="menupageContent">'; //THIS IS WHERE I NEED THE IMAGES TO SHOW print apply_filters( 'taxonomy-images-queried-term-image', 'menu' ); echo '<h3>'.$cat->name.'</h3>'; echo '<ul>'; while ($customInCatQuery->have_posts()) : $customInCatQuery->the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; echo '</ul></div><!--end menupageContent-->';
My problem now is that nothing I do will return the images. I have three images posted to three categories and each one has been assigned to the same parent category. I can’t get the images or if I do, I get all of them 9 times when I should only get 3. Can you help?