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 ThemeIn forum: Virtue Theme
In reply to: Nothing shown
May 24, 2016 at 3:12 pm #96383ok, So I’m out of guessing? I can’t recreate unless I use Edge browser then I see the security error but only on your site not on the demo not anywhere else. It’s not related to the content of the page because you can have an empty page and still see the security error. It’s not related to plugins because you can deactivate them all.
I can only guess that there is something in the htaccess file or something in the permissions of the theme folders that is somehow tripping the edge browser but based on the oddness of this I wouldn’t be surprised if it’s a random bug in the edge browser itself.
At this point for me to test any further I would need ftp access to the site.
Ben
In forum: Virtue ThemeIn reply to: Remove Pricing in "Shop" AND Single Product heading
In forum: Virtue ThemeMay 24, 2016 at 2:53 pm #96377It’s not the choose a sidebar option that is only if you have the sidebar enabled.
I am refering to the very first options : “Display a sidebar on the Home Page?”
You need to click on the image with the sidebar.
Ben
In forum: Virtue ThemeIn reply to: Icon Menu into a Page
Using page builder, you can add a “Virtue: Icon Flip Box” for a similar effect. You’ll want to create a new row, set it to 4 column, and add an Icon Flip Box to each column of the row. It’s not going to be exactly like the home icon menu, but it will be very close.
Give that a try and let me know if that works for you!
In forum: Virtue ThemeTopic: Icon Menu into a Page
May 24, 2016 at 1:55 pm #96361Hi,
Is it possible to add an Icon Menu into a Page instead of at the home page?
Thank youIn forum: Virtue ThemeIn reply to: Portfolio page values above description
In forum: Virtue ThemeIn forum: Virtue Themeyes,
theme options > home layout > choose a sidebar for your home page > (selected) primary SidebarIn page editor (home page)
Page attributes > template > (selected) feature-sidebar
sidebar options > (selected) primary SidebarBut still cannot see the widget on home page
In forum: Virtue ThemeIn reply to: Remove Pricing in "Shop" AND Single Product heading
In forum: Pinnacle ThemeIn reply to: Custom Carousel Strings
May 24, 2016 at 12:34 pm #96338The code is there for them inside the theme. What version of WPML string translation are you using?
Have you tried running a refresh for the strings.
You could approach this differently using the custom carousel shortcodes then having two different shortcode setups per language in your page content.
Ben
In forum: Virtue ThemeIn reply to: image not sizing properly in tablet
Did you mean this to be input in the custom css box on the advanced settings page? Or the css attributes for the image on the page editor? On the latter it does nothing and actually ends up displaying both images.
Also, does this need to be targeting the class .so-widget-image?
Apologize for all the questions, I’m new to this whole css thing.
In forum: Virtue ThemeMay 24, 2016 at 12:20 pm #96330ok, for the sidebar gallery add this css:
.sidebar .kad-wp-gallery .g_item { width: 33.33%; float: left; }For the home page. In your theme options > home layout. Do you have the sidebar enabled?
Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Cloning edit post screen into CPT
May 24, 2016 at 11:24 am #96315Yoast shows on every post type. It’s not post specific options.
Are you sure you need to create a custom post type to have a seperate category in your blog? You can have seperate pages that only show posts of a certain category.
Blog posts options are post type specific and you can’t create a new post type and assume they would take on the role of blog posts. They won’t in many ways including permalinks and archive options. so for what your wanting to do you would have to create post type specific options that saved meta content…
For example of how you can hook into the metabox platform through a child theme:
add_filter( 'cmb_meta_boxes', 'kt_custom_metaboxes' ); function kt_custom_metaboxes( array $meta_boxes ) { $prefix = '_kad_'; $meta_boxes[] = array( 'id' => 'standard_post_metabox', 'title' => __("Standard Post Options", 'virtue'), 'pages' => array( 'post'), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, 'fields' => array( array( 'name' => __("Head Content", 'virtue' ), 'desc' => '', 'id' => $prefix . 'blog_head', 'type' => 'select', 'options' => array( array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ), array( 'name' => __("None", 'virtue' ), 'value' => 'none', ), array( 'name' => __("Image Slider (Flex Slider)", 'virtue' ), 'value' => 'flex', ), array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", 'virtue' ), 'value' => 'carouselslider', ), array( 'name' => __("Image Carousel", 'virtue' ), 'value' => 'carousel', ), array( 'name' => __("Video", 'virtue' ), 'value' => 'video', ), array( 'name' => __("Image", 'virtue' ), 'value' => 'image', ), array( 'name' => __("Shortcode", 'virtue' ), 'value' => 'shortcode', ), ), ), array( 'name' => __("Max Image/Slider Height", 'virtue' ), 'desc' => __("Default is: 400 (Note: just input number, example: 350)", 'virtue' ), 'id' => $prefix . 'posthead_height', 'type' => 'text_small', ), array( 'name' => __("Max Image/Slider Width", 'virtue' ), 'desc' => __("Default is: 770 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", 'virtue' ), 'id' => $prefix . 'posthead_width', 'type' => 'text_small', ), array( 'name' => __("Post Summary", 'virtue' ), 'desc' => '', 'id' => $prefix . 'post_summery', 'type' => 'select', 'options' => array( array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ), array( 'name' => __('Text', 'virtue' ), 'value' => 'text', ), array( 'name' => __('Portrait Image', 'virtue'), 'value' => 'img_portrait', ), array( 'name' => __('Landscape Image', 'virtue'), 'value' => 'img_landscape', ), array( 'name' => __('Portrait Image Slider', 'virtue'), 'value' => 'slider_portrait', ), array( 'name' => __('Landscape Image Slider', 'virtue'), 'value' => 'slider_landscape', ), array( 'name' => __('Video', 'virtue'), 'value' => 'video', ), ), ), array( 'name' => __('If Video Post', 'virtue'), 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue'), 'id' => $prefix . 'post_video', 'type' => 'textarea_code', ), array( 'name' => __('If Shortcode Head Content', 'virtue'), 'desc' => __('Place Shortcode Here', 'virtue'), 'id' => $prefix . 'post_shortcode', 'type' => 'textarea_code', ), ), ); return $meta_boxes; }You would have to change “post” to the post type slug of whatever post they you created in the posts types area for the meta “pages” array.
Ben
In forum: Virtue ThemeMay 24, 2016 at 10:37 am #96298Hey,
You can do with this css. Please open the page or provide the password and I can help you with that.Ben
In forum: Virtue ThemeTopic: Short Description
Hi Ben/Hannah,
I have recently changed the look of my product pages by shortening the short descriptions so that they are incorporated on the shop/product category page. This seems to have decreased the number of calls to my company because we have taken out “Call now for best prices” at the top of the page (This was previously a H4 in the short description). Please see an example of how it looks now here *Login to see link
I would like to get a header near the top of the product page (maybe under the product title) to incorporate “Call now for best prices”. Is there a way of doing this so that it doesn’t show in the product category pages?
Thanks Again,
PaulIn forum: Virtue ThemeSite is nearing completion, began to look at the mobile versions, and having issues with viewing on a mobile screen (Site not resizing appropriately).
Probably due to increasing max width of container in custom css.Site; http://www.ihealthup.com
Custom CSS below, if anything needs to be removed or is not necessary please let me know.
.page-header {
display: none;
}
.container {
width: 1400px;
}
.footerclass h3 {
font-size: 14px;
color: #000000;
}
.topbarmenu ul li a {
font-size: 14px;
}
.footerclass ul li a {
font-size: 14px;
}Thanks, Igor
In forum: Pinnacle ThemeHere is a concept page slider I am working on:
https://whiskermen.com/conceptpage/
How can we increase the space between the primary and secondary buttons?
Thanks,
Chris.In forum: Virtue ThemeIn reply to: Background Image/Slider
-
AuthorSearch Results


