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: Ascend Theme
In reply to: Spacing Question
Hey Frank,
1. There is spacing but default but it looks like you have removed it with this css:.home-padding:first-child { padding-top: 0; }Are you adding that?
2.
You can add your Instagram feed through your home widget area (enabled in Theme Options > Home Layout, then the widget can be added from Appearance > Widgets). Then in your homepage layout manager, you can move “page content” above the product carousel and have the home widget area at the bottom. Does that make sense?Hannah
In forum: Virtue ThemeTopic: Woocommerce
October 6, 2018 at 10:45 am #203489Hi,
How to active. Woocommerce. I Wish to create product page to sell on my site. can you provide me a link so that I could know the steps to build product pages.
Regards
Charanvir SinghIn forum: Ascend ThemeIn reply to: Spacing Question
How can I place the product carousel on the homepage in above the instagram feed display? https://360brotherhood.com
In forum: Ascend ThemeTopic: Spacing Question
Hello,
My website *Login to see link . On the homepage I would like to create spacing between the header and the product carousel. Could you please send me the code for this? I would greatly appreciate it.
In forum: Ascend ThemeIn reply to: Facebook video in wrong locale.
October 6, 2018 at 3:53 am #203474Video type post, video URL: https://www.facebook.com/viljatuote/videos/1655505554557903/
And page with a problem URL
https://www.virtasalmenviljatuote.fi/gluteenittomat-reseptit/gluteeniton-marjapiirakka/
ANd oin this page I have fixed the issue by adding embbed HTML manually. When using video widget it will turn it arabic.
Possible issue lies somewhere that WordPress Finnish locale is .fi not fi_FI like most languages.
https://www.virtasalmenviljatuote.fi/gluteenittomat-reseptivideot/In forum: Virtue ThemeIn reply to: Cyclone Slider height initiating with wrong size
In forum: Ascend ThemeIn reply to: Call to Action Text
You have an open media query that is stopping your css from taking effect. Here:
@media (max-width: 780px) { .page-id-174 .kt-flip-box-contain, .page-id-932 .kt-flip-box-contain { height: 400px !important; }Just add a closing bracket to that and you should be set!
Hannah
In forum: Virtue ThemeHello,
I don’t know why, but my slider is loading with the wrong height settings.
It is set in Cyclone Slider the height: 480px.
It is set in the theme settings -> Home Slider: 480px.
But it initiate as a small square.. then when I scroll the screen, it goes to ~159px or 161.5px (?!?)
As you can see:<div class=”cycloneslider-slides cycle-slideshow” data-cycle-allow-wrap=”true” data-cycle-dynamic-height=”off” data-cycle-auto-height=”960:480″ data-cycle-auto-height-easing=”null” data-cycle-auto-height-speed=”250″ data-cycle-delay=”0″ data-cycle-easing=”” data-cycle-fx=”fade” data-cycle-hide-non-active=”true” data-cycle-log=”false” data-cycle-next=”#cycloneslider-fmg101-1 .cycloneslider-next” data-cycle-pager=”#cycloneslider-fmg101-1 .cycloneslider-pager” data-cycle-pause-on-hover=”false” data-cycle-prev=”#cycloneslider-fmg101-1 .cycloneslider-prev” data-cycle-slides=”> div” data-cycle-speed=”1000″ data-cycle-swipe=”false” data-cycle-tile-count=”7″ data-cycle-tile-delay=”100″ data-cycle-tile-vertical=”true” data-cycle-timeout=”4000″ style=”height: 161.5px;”>
Link: *Login to see link
I was not able to find where this <… style=”height: 161.5px;”> is set.
Any clue?
In forum: Pinnacle ThemeIn reply to: Location map not showing on contact page
In forum: Pinnacle ThemeHi there,
Since updating my theme, my location (Google API map) on my contact page has stopped working. I have checked the API code is still in the theme options so not sure what the issue is?
Thanks,
CharlotteIn forum: Ascend ThemeOctober 5, 2018 at 10:58 am #203432You are adding a lot of css that I would strongly advise against. Overriding core framework classes, absolute positioning, etc.
Are you just wanting me to give you a css hack to fix this one part of your issue that you are asking about?
or are you willing to remove all this css you are adding and then we can help you set up the page how you want in perhaps a better way.
For example look at your page on mobile and the sidebar is on top of our content. The “get started” button is not on screen.
If I just give you a hack css for the sidebar on desktop you will be back with 20 other issues for different screen sizes based on the css you are adding.
Ben
In forum: Ascend ThemeHello im working with the Ascend theme on the category pages I would like the side bar to not move vertically and have the width constrict with a variable % width.
To see the problem play with the witdh of the screen and the categories column moves down the screen.
thanks!
In forum: Virtue ThemeIn reply to: Product Title h1 alignment
October 5, 2018 at 9:29 am #203425Hey,
h1 { text-align:center; }Don’t add that ^ instead remove it. It’s too broad.
If you want the page titles aligned center use this:
.page-header { text-align: center; }Ben
In forum: Virtue ThemeIn reply to: Product Title h1 alignment
In forum: Virtue ThemeIn forum: Virtue ThemeHi Guys,
i will be moving tomorrow (finally!) my virtue local premium website on test environment (main page) to my already existing virtue free theme production website (dookolapracy.pl).
If i will upgrade virtue free to virtue premium what changes can i expect to be properly prepared?
Best Wishes,
JacekIn forum: Ascend ThemeIn reply to: Call to Action Text
Hey Rick,
Try this css:.page-id-920 .kt-ctaw .kt-call-to-action-abovetitle, .page-id-920 .kt-ctaw .kt-call-to-action-title, .page-id-878 .kt-ctaw .kt-call-to-action-abovetitle, .page-id-878 .kt-ctaw .kt-call-to-action-title { text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.65); }How does that work for you?
Hannah
In forum: Virtue ThemeIn reply to: Disable Page and Product Sidebar Options for vendor
October 4, 2018 at 10:36 pm #203399Hey,
To change this you would need to use custom code through a child theme, add this to the functions.php file.
function custom_show_sidebar_meta_only_admin( $display, $meta_box ) { if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar' == $meta_box['id'] ) ) { return current_user_can( 'manage_options' ); } else { return true; } } add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );Ben
In forum: Virtue ThemeIn reply to: Disable Page and Product Sidebar Options for vendor
October 4, 2018 at 7:57 pm #203392How can i post a link? I need to make a vendor and an admin account for this. Is you want vendor account. I am attaching two images highlighted with what i want to hide from vendors. I want that “vendor” user role can not edit page and product sidebar option, Only admin can edit them.
In forum: Virtue ThemeHI Support!
I have used page builder by Site Origin on my FIRST WEBSITE and it was great.
I just started a SECOND WEBSITE and decided on Elementor and realised how powerful it is..WOW!
Is it possible to create NEW pages on my FIRST WEBSITE with Elementor even though PB by Site Origin is installed/Active???
Thanks….don’t want to rock the boat and cause problems. 🙂
-
AuthorSearch Results


