Forum Replies Created
-
AuthorPosts
-
October 20, 2020 at 11:18 pm in reply to: Outreach Pro Home Bottom Alignment and Feature Images #501527
Try CSS Grid https://www.w3schools.com/css/css_grid.asp
There are several CSS Grid methods.
Or
Atomic Blocks plugin
There's 2 ways to do this :
1. Find a plugin which includes the functionality you need.
2. Write custom code to do the same thing. This may require several hours of work unless you can find a tutorial which already includes the functionality you need.
October 10, 2020 at 8:08 am in reply to: Change "search" string to local language – essence pro theme #501399October 8, 2020 at 8:41 pm in reply to: Add CSS bullet points for text block in Genesis Sample Theme #501390You can add a class directly to your HTML
<ul class="my-list">
Sounds like the problems with the CSS.
Link to your live site please.
October 8, 2020 at 7:16 pm in reply to: Show Hide Featured Image option using Advanced Custom Fields #501389You would need to use a custom function to check if ACF is true or false. https://www.advancedcustomfields.com/resources/true-false/
And wrap that code in a hook which executes before your remove action like genesis_meta with a 3rd parameter of 9. Untested but it should work.
To write the working code for this would require the setup of ACF using exactly the same settings as what you're using.
That should be enough to get you started.
Try using -1 as the value for posts_per_page
Also, you can use the genesis_custom_loop function like this
Please rephrase your question. As it stands, it doesn't make sense. Also, please publish your entire working code snippet.
You can try the Genesis > Theme Settings > Content Archives > featured Image Size settings.
October 6, 2020 at 6:33 am in reply to: How to remove spacing in testimonials and a line near the footer in Academy Pro #501353You should be using FTP to access files along with a code editor so you can find the line numbers.
You can read the HTML from the front end using inspect element https://youtu.be/9oYhq84ZqaE
You should see the function in your child themes functions file which removes the header right widget area and remove that line of code.
October 6, 2020 at 3:28 am in reply to: Listings Archives page on Winning Agent Press Pro 2.0 #501347Looks like you have it worked out. Just need to create your custom taxonomy terms for your search widget.
It depends on how you setup your blog page but you can try your WordPress > Settings > Reading Settings > Blog pages show at most.
October 6, 2020 at 3:14 am in reply to: How to remove spacing in testimonials and a line near the footer in Academy Pro #501345If you inspect the element, you'll find the CSS rule and line number the CSS rule is located on in your child theme style.css file.
.front-page-4 blockquote cite { line-height: 45px; vertical-align: middle; }
Mega menu might work https://www.megamenu.com/documentation/genesis-framework/
October 1, 2020 at 11:45 pm in reply to: Help with Slush Pro Theme as zigzagpress.com never respond to enquries #501286You can add the header right widget area back or add a widget area to the nav menu.
September 30, 2020 at 11:54 pm in reply to: How to add products from various categories on the homepage? #501276It depends on your front page setup.
There are at least 3 ways :
1. If using blocks, you can use a WooCommerce block.
2. If using widgets, you can use a WC widget.
3. If using a standard loop, you can add support for your WC Product CPT like this in your child themes functions.php file
add_action( 'pre_get_posts', 'add_custom_post_type_to_query' ); function add_custom_post_type_to_query( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'post_type', array('post', 'product' ) ); } }
September 30, 2020 at 10:56 pm in reply to: Add CSS bullet points for text block in Genesis Sample Theme #501275This will work if you add the HTML correctly.
Your list container needs to be wrapped in a ul tag and each list item needs to be wrapped in the li tag
<ul> <li>list one</li> <li>list two</li> </ul>
Then you can use CSS to style your list.
September 30, 2020 at 8:51 pm in reply to: Show Feature Images on Posts and Pages (News Pro / Genesis version 3.3.3) #501274Try the Genesis > Theme Settings > Content Archive > Display the featured image? settings.
-
AuthorPosts