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'

Home / Forums / Search / Search Results for 'Page'

Viewing 20 results - 29,421 through 29,440 (of 53,646 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme
    #115257

    Hi guys, I’m just wondering why my site lags so much? When I load it it takes too long, and when I switch pages it does as well. Can you help me with that?

    #115256

    New problem — could it be related? The designated blog page http://69.167.139.202/working-dog-blog-podcast/ is supposed to have text below the Page Title, which is included in the Edit Page panel for that page. It’s not showing up. I know I have the right page, because I can change the title and it changes. What could be keeping the text from showing up?

    #115253

    OK, thank you. Got it! It seems that it only applied to the two widgets I had in the Home Page Widget area. All the sidebar widgets were fine.

    In forum: Pinnacle Theme

    In reply to: few corrections

    #115251

    If you want that in the grid you would have to change how the grid works by using a child theme and editing the template.

    If you want to add the link in your testimonial page settings click “Add link to single post”.

    Ben

    #115248

    Hi Ben, thanks for your help. Please, could you validate my updated snippet, considering the following:

    1/ The category id is different for each language.
    2/ The banner is required for tags archive pages also.

    Here is my update:

    // BEGIN Add a banner for each blog post category (on single posts, category and tags archive pages)
    function kt_custom_category_slider() {
    	if(is_category('37') || (is_singular('post') && in_category('37') )  || (is_tag() && in_category('37') ) ) {
    		if(pll_current_language() == 'en') {
    			echo do_shortcode('[kadence_slider_pro id="15"]');
    		}
    	} else if(is_category('43') || (is_singular('post') && in_category('43') )  || (is_tag() && in_category('43') ) ) {
    		if(pll_current_language() == 'fr') {
    			echo do_shortcode('[kadence_slider_pro id="6"]');
    		}
    	} else if(is_category('41') || (is_singular('post') && in_category('41') )  || (is_tag() && in_category('41') ) ) {
    			echo do_shortcode('[kadence_slider_pro id="16"]');
    	}
    }
    add_action('kt_header_after', 'kt_custom_category_slider');
    // END Add a banner for each blog post category (on single posts, category and tags archive pages)
    In forum: Pinnacle Theme

    In reply to: Few questions

    #115243

    Hey Nuno,

    1. Are you using the home custom carousel? If so, in Theme Options > Home Layout under Home Custom Carousel Settings you can set Enable custom image ratio for carousel to Off.

    2. You could do this with css.

    3. You can remove that with this css:

    .home .col-md-12.postfooterarea {
        display: none;
    }

    4. You would have to do this through your page. I can help adjust the spacing with css if you would like.

    5. Do you mean the icons within the info box? Try this css:

    .kad-info-box .kad-circle-iconclass {
        border-radius: 0;
    }

    Hope that helps!
    Hannah

    In forum: Pinnacle Theme

    In reply to: few corrections

    #115240

    Hi Ben, how does one get to the single testimonial page ?
    Goal here is to have the Name of the Service along with the Testimonial, any idea ?

    In forum: Pinnacle Theme

    Topic: Few questions

    #115239

    Hey,

    Currently I am working on this website:

    (homepage for now)

    1. When we scroll to ‘Members’ the carousel is cutting part of the heads (pics are originally 3:4 but they are cropped to 1:1). How do I do for those pics not to be cropped?
    2. If I were to insert square photos, would it be possible to have a carousel with round photos

    3. When we scroll to ‘Blog’ there is a line under the post and before the call of action. How do I delete it? (I did not finding it in the editor)

    4. Immediately after, I have 3 info boxes, but I want to add a title to this section. I did it with Page builder in a row with 3 columns, however I cannot add a title. I tried to add a row before with just the title but it doesn’t look that good due to spacing (even if adjusting paddings)… Is there any solution?

    4. Is it possible to have straight corners in the info boxes (instead of a bit rounded)?

    Thanks a lot for your help!

    Cheers,
    Nuno

    In forum: Pinnacle Theme

    In reply to: few corrections

    #115238

    3. Thats only going to show on the single testimonial page: http://themes.kadencethemes.com/pinnacle-premium/testimonial/tom/

    Ben

    In forum: Pinnacle Theme
    #115222

    Hi again,

    moved the topic from Members forum since there are a few more details to smooth out:

    1. CSS you gave me for hover and current is not working. What did i do wrong ?

    Hover:

    .kad-primary-nav ul.sf-menu > li> a:hover, .kad-primary-nav ul.sf-menu > li.current-menu-item > a:hover {
    color: green;
    }

    Current:

    .kad-primary-nav ul.sf-menu > li.current-menu-item > a {
    color:yellow;
    }

    2. I try to set image for Author without Gravatar. I used this plugin to load the image and i can see the image in the profile

    … but it is not showing with the post. Author image is enabled in Theme options and in Post.
    I guess the plugin is not working with theme.., any suggestion ?

    3. Testimonials shortcode (see page Gastebuch)- the field position/company (renamed to Art der Leistung) is set to true but it does not appear in the Testimonial. Did i miss something ?

    Thank you,
    B.

    #115217
    This reply has been marked as private.
    In forum: Virtue Theme
    #115198

    3. Everything within your topbar is already displaying on one line:
    http://www.awesomescreenshot.com/image/1647998/84274b6706a8be0245e698413b891db3

    4. Please remove the CSS that’s effecting your products so that I can see what effect it is having. I’m unable to remove it from your page via inspect tool due to the amount of custom CSS that you have in your box. This will make it much easier for me to give you the correct code.

    5. We’re still waiting on Ben to let us know this, but rest assured he’ll get to it eventually.

    -Kevin

    #115197

    I’m in my cpanel now.

    Do you have the exact code that should be in that page? I see where she added some stuff at the bottom, but I don’t know what should be the final line of code?

    #115195

    Hi Kadence, I’m trying to find the better way to set an After Header Banner for a category of posts only. This banner may be shown for all the single posts and the archives page templates for this category only. I made a banner for each language with Kadence Slider Pro, so I have a shortcode for each language.

    I successfully did it but with a lot of CSS. I really would like to heard from the Kadence Team what could be a cleanest way. I’m considering to code it in php in the child theme templates, but I’m not sure how to do it, as I need to keep it user-friendly for the webmaster.

    What I did for now (with a lot of css):

    I added all the 3 shortcodes* (for the 3 languages) to the Sitewide after Header Shortcode (in Theme Options > Main Settings)
    And I hid each banner using css for the other blog categories and the pages where I don’t want this banner.

    *Note: I currently have the Virtue Premium version 3.7.4 installed (I will update soon) and the Sitewide after Header Shortcode string isn’t available for translation in the Polylang table. I didn’t find into the theme changelog or into the version 3.8.6 wpml-config.xml if that string was recently added for translation. If not, please could you tell what I need to add to wpml-config.xml into my child theme?

    Thanks in advance

    #115191

    Hello,
    I wanted to know if I can change the color of our WooCommerce Cart Buttons to orange #e05038
    while keeping the top WooCommerc cart menu on top of page black.

    Thanks so much!
    deb

    In forum: Virtue Theme

    In reply to: Product in Pages

    #115190

    Hello Ozan,

    In WooCommerce> Settings> Products> display, you should be able to assign a shop page through there. This shop page will display a page that shows your products. Further settings for your shop page can be found in Theme Options> Shop Settings.

    Let me know if this is what you’re looking for.

    -Kevin

    #115181

    There was a folder there named [kadence-slider copy]. I deleted it and tried the plugins page again. Still not there.

    #115179

    Hi,
    I have been trying to put the code Mailchimp provides me to embed a popup subscriber form on my site. The code is provided by Mailchimp. It appears to be javascript. I saw a couple of posts in the support forums about this but no resolution.

    I have tried putting the code in a text widget, directly on the page in text entry mode, in the footer, and in the Header and Footer Scripts section. No matter where I put it, it breaks the site completely so that the only things that load are the header and the footer. Mailchimp says if there is any problem to contact the developer of the theme. Where can I put this code for it to work? I’d rather just use the embed code than a plugin if possible.

    Thanks.

    #115177

    Thank you, Ben. That does clarify things. However it doesn’t seem to be working. I added that code to the functions.php file, via the Appearance/Editor panel in the WP admin. The plugin is active, and it allows me to select an image for a category page. But the image does not show up on the category page.

    In forum: Virtue Theme
    #115174

    Hi
    all products that shows in website are product kategory
    there is no product in pages
    i mean i cannot put any product in pages
    For Example
    this is product category
    i wanted this as a page but it is product category.
    how can i show products(that i want) in pages ? there are some widgets of woocommers but in that i cannot choose any product.

Viewing 20 results - 29,421 through 29,440 (of 53,646 total)