Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'page '
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Modifying Search results templates
Thanks for your perseverance on this, Ben. No change, I’m afraid.
I modified line 65 in page-searchwp-supplemental.php as you suggested. That block now looks like this:foreach ( $swp_query->posts as $post ) { setup_postdata( $post ); // output the result ?> <div class="search-result search_results_item grid_item"> <?php global $post; $item_download_thumbnail = get_post_meta($post->ID, 'sdm_upload_thumbnail', true); if ( $item_download_thumbnail ) { ?> <div class="imghoverclass img-margin-center"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <img src="<?php echo $item_download_thumbnail; ?>" alt="<?php the_title_attribute(); ?>"> </a> </div> <?php } ?> <div class="postcontent"> <header> <a href="<?php the_permalink(); ?>"> <h5 class="entry-title"><?php the_title(); ?></h5> </a> </header> <div class="entry-content"> <?php the_excerpt(); ?> </div> </div> </div> <?php }In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
Have changed the attachment, but the background on that page is now white (no image)
body.page-id-23 {
background:url(‘https://littleshopofstrange.co.za/wp-content/uploads/2018/09/Little-shop-of-Strange-Website-background-gallery-page-2.jpg’);
background-size: cover;
}In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
Try adding a background sizing setting to your CSS like this:
body.page-id-23 { background:url(‘https://littleshopofstrange.co.za/wp-content/uploads/2018/09/Little-shop-of-Strange-background-gallery-page.jpg’); background-size: cover; }Does that make a difference?
-Kevin
In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
In forum: Ascend ThemeIn reply to: Site not showing correctly on some IE versions
In forum: Ascend ThemeIn reply to: Messed up Product Carousel image format
In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
In forum: Virtue ThemeSeptember 18, 2018 at 9:51 am #201790Your issue on this page: https://www.legacytouch.com/partners/
Is the script you are adding at the end:
<script type="text/javascript" src="https://LegacyTouch.formstack.com/forms/js.php/become_a_partner"></script><noscript><a href="https://LegacyTouch.formstack.com/forms/become_a_partner" title="Online Form">Online Form - Become a Partner</a></noscript>It’s loading very outdated javascript and breaking the code for the rest of the site.
You either need to remove that or go to wherever you got it and get an updated version.
Ben
In forum: Virtue ThemeIn reply to: Different page background image not rendering to CSS
In forum: Virtue ThemeHi I’m seeting a different page background for a second page with this CSS below, but for some reason it’s not covering.
body {
background-repeat: no-repeat !important;
background-position: center center !important;
background-attachment: fixed !important;
background-size: cover;
}
body.page-id-23 {
background:url(‘*Login to see link
}In forum: Ascend ThemeSeptember 18, 2018 at 9:32 am #201784I’ll need access to your server to fix whatever other php issues you are having that is preventing the importer. can you send me cpanel access?
It took me over 15 seconds to load the empty front page of your site. Something is very wrong in your server so I’ll need some access to toubleshoot that.
In forum: Pinnacle ThemeIn reply to: Front Page
September 18, 2018 at 9:14 am #201779Hey,
If you are wanting a splash page I suggest using a splash page plugin, for example: https://wordpress.org/plugins/very-simple-splash-page/This really helps with user navigation since it opens the site with that splash page but if that user navigates to the “home” page then to an internal then back to the “home” page they are not taken back to a splash page.
If you are set on using the real home page then you would need to hide the navigation with css like this:
.home #nav-main { display: none; }And manually add new navigation into your page content for the home page.
Ben
In forum: Virtue ThemeIn reply to: Create a new template
Hi guillaume,
This post may be helpful: https://premium.wpmudev.org/blog/creating-custom-page-templates-in-wordpress/Hannah
In forum: Pinnacle ThemeIn reply to: Post summary
September 18, 2018 at 9:07 am #201774Hey, So you are manually adding a custom excerpt for this post: https://www.theunseenside.life/a-street-life/
Thus when you show the post on the home page it’s only going to show that custom excerpt.
Are you not aware that you are setting a custom excerpt?
Ben
In forum: Pinnacle ThemeIn reply to: Front Page
September 18, 2018 at 8:47 am #201772Thanks Hannah! I already tried the transparent header. I simply want the navigation to be in the center of the page, on the left as:
Logo
Welcome (Title)
(Navigation)Is there css course I should look into in order to learn more about how to override the home page?
Thanks for the code to remove the footer. I will use that.
In forum: Virtue ThemeIn reply to: Create a new template
Hi Kevin and thank you for your reply.
I thought about this solution but I need something a little bit more dynamique.
I think with this solution, if I want to add an element to the page in the future I will have to update all the clones pages manually.
That is why I thought about creating and adding a new template or if not possible create a copy of one existing template, make some changes and add it to my child theme.
Do you have a tuto about creating and adding a new template?
Thank you KevinIn forum: Pinnacle ThemeIn reply to: Front Page
Hi Ellen,
With Pinnacle there’s an option to place the home slider behind the header (so the header would be transparent) from Theme Options > Home Slider. But there isn’t a function to move the header below the slider. If you want to remove the footer and content area from your homepage you can use this css:.home #containerfooter, .homepagecontent { padding-top: 20px; display: none; }Just paste that into your custom css box in Theme Options > Custom CSS.
Hope it helps!Hannah
In forum: Virtue ThemeIn reply to: Virtue Premium Style 1 setup
Hi Elaine,
I think this post will be helpful for you: https://www.kadencewp.com/creating-a-home-page-with-virtue/
The main plugin being used is page builder by siteorigin.
Let me know if you have further questions on this!Hannah
In forum: Pinnacle ThemeTopic: Front Page
September 18, 2018 at 7:58 am #201762Hello,
I’m using Pinnacle for the first time. I am having a hard time manipulating the front page. My client wants something a little different – a gateway page to the rest of the website. On the frontpage, he simply wants an image, a welcome message and then navigation right under that (I want to remove navigation from the top). I’m not able to get navigation on top of the image, in the middle of the page. How do I do that using Pinnacle?
*Login to see link
I’m using Coming Soon Pro, if you need the passthrough, it is: *Login to see link ?bypass=getgeeting -
AuthorSearch Results


