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: Pinnacle Theme
In reply to: how to remove sidebar
In virtue I suppose there’s this theme options > main settings > Site Layout Style where you can choose to have wide site or boxed with sidebar. If I’m not wrong.
In Pinnacle I set on Blog Options > Post Defaults > no sidebar the same in Blog Category/Archive Defaults but if I go to Media > Library then click on a picture the page open with sidebar.So my question is simple, is there a way you can add an option that user can deselect sidebar sitewide and activate on single page if needed?
thanks
AngeloIn forum: Pinnacle ThemeIn reply to: how to remove sidebar
January 30, 2015 at 11:45 am #29185What option are you talking about in virtue? virtue you can set sidebars on pages based on the page template. Pinnacle you have a select box option on your pages.
Ben
In forum: Virtue ThemeIn reply to: Cannot see the featured image in frontpage
January 30, 2015 at 11:09 am #29174Hey,
The front page uses it’s own page template. If you want to add an image you have to use the home slider settings. You can either add a slider or if you just want an image add your image in the video box and set the slider options to video. This is the code you add in the box:<img src="urltoimg">Ben
In forum: Virtue ThemeJanuary 30, 2015 at 10:35 am #29172Hmm ok. I am using page builder and have put two of the WP google map plugin widgets into the page – does the error mean I can’t do that? Or is what’s happening to it not usual….?
Nic
Ps thank you for swift response!!!
In forum: Virtue ThemeIn forum: Virtue ThemeJanuary 30, 2015 at 9:27 am #29163I’ve just added a new page and for some reason it is displaying extremely weirdly.
I haven’t done anything different with this page and the other pages are fine.
The only thing I can think of is that it’s the WP Google Map Plugin I just installed. has anyone else had this issue and can you provide a workaround:
*Login to see linkMany thanks
nic
In forum: Virtue ThemeIn reply to: Overlapping logo
Hey,
The only way I know to do this is to crate a revolution slider and add an image layer (your logo) then you can add css to change the opacity:.tp-simpleresponsive img { opacity: .6; }Then you could use css again to remove the logo from the homepage:
.home #logo { display: none; }Does that make sense?
In forum: Pinnacle ThemeIn reply to: Landing page in Pinnacle theme
Hey, this css should remove the padding at the top:
body.page #content .main .pageclass { padding: 0; }When you add content to the page does it display over the image? Another option would be to create a full-width revolution slider and add that to the page. Would that work for you?
Hannah
In forum: Virtue ThemeTopic: Mobile Menu is gone
In forum: Pinnacle ThemeIn reply to: Landing page in Pinnacle theme
Hi,
I followed these instructions. I got a nice white page. Then, I wanted to add a background picture to the whole page. But it does not cover the place of the topbar. (I added the background page with a plugin, because I did not find way).
Here is the link how does it look like now: http://bakancslistasutazasok.krajcar.org/?page_id=195
Here here are the CSS lines I should add: /* This piece of code turns off topbar, footer and header for landing pages*/
.page-id-195 #pageheader {
display: none;
}
.page-id-195 #topbar {
display: none;
}
.page-id-195 #containerfooter {
display: none;
}
.page-id-195 .headerclass {
display: none;
}
.page-id-195 .kt-call-sitewide-to-action {
display: none;
}
/*end*/What I want to achieve within the theme is the following: I want to have a page without topbar, header, footer and sidebar. I want to add to it a background picture that covers the whole screen. And on that I would put some text, and some buttons (or some form). I want to use them as capture page and thank you page within my sales funnel.
Is this possible to achieve within this theme, taking into consideration that I am not a programming expert.
Thank you for your help.
In forum: Virtue ThemeJanuary 29, 2015 at 9:00 pm #29127Hello.
I can’t see my featured image in the frontpage. I set a featured image and selected “image” in the featured options, the template is “featured-sidebar”. Other featured images are shown properly in other pages.
The image is 1102x278px, does it matter? can you have a look?
The page not showing the image is: *Login to see link
Camilo
In forum: Virtue ThemeTopic: In page slider
Hi Ben – is there a shortcode to create an in page slider / carousel of gallery images?
I can’t see it on the Virtue Shortcode tab button (located next to add media button) and I’m surprised by this – as your excellent theme has almost everything else! Have I found a missing feature 😉
I can see there is a Feature Page slider when setting template to “Feature” – but this is for a custom template page – and also I don’t want them in the header – I simply wanted to add at the footer of a page, a scrolling gallery of images (similar to the product slider, but not products, just gallery images).
I don’t really want to have to set this up in Kadance slider, or Cyclone slider in order to copy over a shortcode as I would like to do this in multiple pages (different images), just was hoping there was an easy in page feature – but can’t see it so thought I’d ask in case I’m missing something.
Thanks
SolIn forum: Virtue ThemeIn reply to: blank page
This was code I was fooling with:
<?php
/*———————————————————————————–*/
/* Include Theme Functions */
/*———————————————————————————–*/
load_theme_textdomain(‘virtue’, get_template_directory() . ‘/languages’);
require_once locate_template(‘/themeoptions/options/virtue_extension.php’); // Options framework extension
require_once locate_template(‘/themeoptions/framework.php’); // Options framework
require_once locate_template(‘/themeoptions/options.php’); // Options framework
require_once locate_template(‘/lib/utils.php’); // Utility functions
require_once locate_template(‘/lib/init.php’); // Initial theme setup and constants
require_once locate_template(‘/lib/sidebar.php’); // Sidebar class
require_once locate_template(‘/lib/config.php’); // Configuration
require_once locate_template(‘/lib/cleanup.php’); // Cleanup
require_once locate_template(‘/lib/custom-nav.php’); // Nav Options
require_once locate_template(‘/lib/nav.php’); // Custom nav modifications
require_once locate_template(‘/lib/metaboxes.php’); // Custom metaboxes
require_once locate_template(‘/lib/gallery_metabox.php’); // Custom metaboxes
require_once locate_template(‘/lib/comments.php’); // Custom comments modifications
require_once locate_template(‘/lib/shortcodes.php’); // Shortcodes
require_once locate_template(‘/lib/carousel_shortcodes.php’); // Carousel Shortcodes
require_once locate_template(‘/lib/custom_carousel_shortcodes.php’); // Carousel Shortcodes
require_once locate_template(‘/lib/testimonial_shortcodes.php’); // Carousel Shortcodes
require_once locate_template(‘/lib/testimonial_form_shortcode.php’); // Carousel Shortcodes
require_once locate_template(‘/lib/blog_shortcodes.php’); // Blog Shortcodes
require_once locate_template(‘/lib/image_menu_shortcodes.php’); // image menu Shortcodes
require_once locate_template(‘/lib/google_map_shortcode.php’); // Map Shortcodes
require_once locate_template(‘/lib/portfolio_shortcodes.php’); // Portfolio Shortcodes
require_once locate_template(‘/lib/portfolio_type_shortcodes.php’); // Portfolio Shortcodes
require_once locate_template(‘/lib/staff_shortcodes.php’); // Staff Shortcodes
require_once locate_template(‘/lib/gallery.php’); // Gallery Shortcode
require_once locate_template(‘/lib/post-types.php’); // Post Types
require_once locate_template(‘/lib/premium_widgets.php’); // Gallery Widget
require_once locate_template(‘/lib/widgets.php’); // Sidebars and widgets
require_once locate_template(‘/lib/Mobile_Detect.php’); // Mobile Detect
require_once locate_template(‘/lib/aq_resizer.php’); // Resize on the fly
require_once locate_template(‘/lib/revslider-activate.php’); // Plugin Activation
require_once locate_template(‘/lib/taxonomy-meta-class.php’); // Taxonomy meta boxes
require_once locate_template(‘/lib/taxonomy-meta.php’); // Taxonomy meta boxes
require_once locate_template(‘/lib/scripts.php’); // Scripts and stylesheets
require_once locate_template(‘/lib/custom.php’); // Custom functions
require_once locate_template(‘/lib/admin_scripts.php’); // Icon functions
require_once locate_template(‘/lib/authorbox.php’); // Author box
require_once locate_template(‘/lib/breadcrumbs.php’); // Breadcrumbs
require_once locate_template(‘/lib/custom-woocommerce.php’); // Woocommerce functions
require_once locate_template(‘/lib/custom_css.php’); // Fontend Custom CSS
require_once locate_template(‘/lib/wp-updates-theme.php’);
new WPUpdatesThemeUpdater_647( ‘http://wp-updates.com/api/2/theme’, basename( get_template_directory() ) );function virtue_shortcode_init() {
if(is_admin()){ if(kad_is_edit_page()){require_once locate_template(‘/lib/kad_shortcodes.php’); }}
}
add_action(‘init’, ‘virtue_shortcode_init’);In forum: Virtue ThemeTopic: blank page
By the way, I see at least two Steve’s on here. So it isn’t always the same person lol.
Help! I was trying to follow instructions to transfer to a Child Theme per Ben’s OK on another thread. I was in editor, something like Comments php? Pasted info from main theme to child (both Virtue Premium)
Now all I get is a blank page, can’t even reactivate or reinstall?
In forum: Virtue ThemeHello,
I’m using the full-width stretched option in pagebuilder to stretch my text across the page, but I’d like to adjust the padding on the left and right. When I add left and right padding in the row settings, nothing happens. I can add padding around the entire text widget, but I don’t want space on top and below. Any suggestions?In forum: Pinnacle ThemeTopic: Insert Link in Footer
In forum: Virtue ThemeIn reply to: Change image on rollover
Thanks a lot !
I’ve 2 more question about the footer.
1- The footer is too close to my pages, I’d like to let 300px between it and the page above. How can I do it ?
2- Lines in my container-footer are too short, I’ve some pages written on 2 lines instead of 1, like for “Photographie de Mariage” (First Footer Widget)Thanks again,
In forum: Pinnacle ThemeHi!
Call me stupid …. but i couldn´t fint a way to create a simple text link e.g. in the text widget.
Even if i switch to the editor (html).
First it seems to take my links …. but then it disappears when i open the editor again…..
Nothing happens on the page.Need help !
In forum: Virtue ThemeIn reply to: Using a font which isnt available in theme options
Hey Steve, adding a custom font can be a tricky process. There are lots of tutorials out there explaining how. This one seems pretty decent: http://www.pagelines.com/adding-custom-fonts-to-wordpress/
A much simpler way to add a font is with this plugin- https://wordpress.org/plugins/use-any-font/
I personally haven’t used it, but the reviews are amazing. Probably worth checking out.Hannah
In forum: Virtue ThemeIn reply to: comments on select pages
-
AuthorSearch Results


