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 'site'

Home / Forums / Search / Search Results for 'site'

Viewing 20 results - 26,261 through 26,280 (of 39,333 total)
  • Author
    Search Results
  • #101494

    please post a link to your site.
    Ben

    #101492

    Can you post a link to your site? Be sure that under Page Attributes you’re assigning the correct portfolio template to the page.

    #101490

    Hi, recently I purchased Comodo EV SSL certificate via my host provider and I followed the steps outlined by Comodo in the following web link:

    The generated Code Snippets were added under Theme Options>Heather and Footer section. The Logo appeared at the bottom left corner as expected however I like to change this and have the Logo to appear in the same way as it appears on Comodo web site:

    the logo appears on the left site and locked, i.e. stuck and moves with the site up and down ( you can see it by visiting the following site: )

    Can you advise how can i achieve the same effect?

    In forum: Virtue Theme

    In reply to: Theme Speed

    #101489

    I’m still not sure how update_option would cause your error unless something else was wrong on the site. I would really be causes of why one update option would cause you trouble like that?

    I’m happy to add your suggestion, makes senses to run a check,

    Ben

    #101488

    1. This CSS will increase the space between your main content and the sidebar.

    .blog div#ktmain {
        padding-right: 40px;
    }

    2. Try this CSS and let me know if that’s what you’re talking about:

    .blog p {
        margin-bottom: 30px;
        font-size: 14px
    }

    3. Are you referring to the text in your post excerpt? If so, the above CSS will effect that. You’ll want to change the 14px to whatever works for your site though.

    Let me know if that helps.

    In forum: Virtue Theme

    In reply to: Theme Speed

    #101467

    Yes, I’m fully up to date with WordPress, WooCommerce, bbPress and the theme.

    I’ve tracked down cause of the slow query – on every page load, custom-woocommerce.php is called, which contains (on line 14 at the time of writing) the following:

    update_option( 'woocommerce_enable_lightbox', false );

    Beneath the hood, this is calling SHOW FULL COLUMNS.

    By commenting out or modifying this line of code (which, obviously, I can’t do on a production site, as I’ll need to do it every time the theme is updated), the page loading is much improved.

    An improvement to this would be:

        // Disable WooCommerce Lightbox if enabled
    	if (get_option( 'woocommerce_enable_lightbox' ) == true ) {
    		update_option( 'woocommerce_enable_lightbox', false );
    	}
    

    There was well over half a second extra query time added on purely with a theme change – yes, WooCommerce and bbPress are fairly “large”, but they are pretty much the only other plugins running – unlike some sites I’ve seen where there are loads of active plugins dragging information from all over the place (ie analytics, social icons etc).

    I accept some extra load time with the additional options and functionality, but this one query was quite annoying!

    I’ve no caching plugin running, firstly as I’m in a development state, and secondly, I have dynamic content based upon the logged in user, which doesn’t appear to cache well, so I’m looking to optimise as much as I can before I implement caching, which should then of course make things even better!

    Garry

    #101465

    Can you post a link to your site so I can see what’s happening?

    thanks!

    #101432

    Hi Ben – Thanks for the response!

    1 – So I’m not completely sure where you mean by ‘go to the web files for your site’ – http://www.’sitename’.wp-content/plugins (which is, I presume, where you meant?) doesn’t seem to exist for me. wp-admin/plugins does exist (i.e. the main admin plugins interface) but there is no file named “kadence slider” there (if that was where you meant!). Am I looking in the correct place? Sorry to be so inept!

    2 – I’ve gone back on this morning and the Cyclone Slider Pro has activated this time (Kadence Slider still won’t install though) 🙂

    Ben

    #101420
    This reply has been marked as private.
    #101395

    Hi,
    I’m working on this right now. I deleted the contact page and created it again. There is one small progress I deleted WP Cache widget and the map showed up on the contact page. Unfortunately I doesn’t show my location (instead of that it shows a random location somewhere in France :)).
    Regarding API – I can’t see any API field in Pinnacle Theme contact page. There is no such field in Pinnacle Google Map widget as well. I found it in SiteOrigin widget and I’m going to test it.

    In forum: Virtue Theme

    In reply to: Accordion Styling

    #101391

    I wasn’t aware of the Site Origin Editor issue. I’ve changed it to the visual editor and every works perfectly. Thanks Ben.

    Couple of fine tuning points:

    1. How do I change the font colour and size of the body text?
    2. How can I make the “+”/”-” icons be horizontally centered? Currently it’s at the top of the boxes.
    3. Can I increase the size of the +/- icons, if so, how?

    Thanks for your help. I would never have figured that out otherwise!

    #101382

    You’re getting this error on your page:
    “Google Maps API error: MissingKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#missing-key-map-error”

    This is an issue that’s been popping up quite frequently, and it has to do with a new requirement of adding an API key for your site’s google maps.

    For the Virtue theme, an update has been pushed that allows for input of the API. It hasn’t been pushed for Pinnacle, but I am sure a solution will be provided from Ben soon.

    In forum: Virtue Theme

    In reply to: Accordion Styling

    #101379

    First and most important. Use the “visual editor” not the siteorigin editor (it handles shortcodes very poory).
    But if you must use that widget (for whe know what reason) then make sure to turn off “auto paragraph” then adding a shortcode.

    1.

    .panel-heading h5 {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        margin: 0;
    }
    

    2. ^^

    3.

    .panel-heading .accordion-toggle.collapsed:hover {
        background: #f2f2f2;
    }

    4.

    .panel-heading .accordion-toggle {
        background: #f2f2f2;
    }
    .panel-heading .accordion-toggle.collapsed {
        background: white;
    }
    .panel.panel-default .panel-collapse {
        background: #f2f2f2;
    }
    .panel-body {
        border: 0;
    }
    

    5.

    .panel-heading .accordion-toggle, .panel-heading .accordion-toggle.collapsed {
        border-left: 0;
        border-right: 0;
    }
    .panel.panel-default {
        border-left: 0;
        border-right: 0;
    }

    Ben

    #101375

    1. Make one parent category for woman and have both subcategories in it.

    2. Yes that will clear your site. If you added demo content and want to remove it but leave something else the you would need to manually remove each thing. Like going into posts and putting the demo posts into the trash.

    Ben

    #101371

    Yeah a link to your site? whats the url?

    Ben

    #101353

    Try placing this CSS into Theme Options> Custom CSS.

    .home .footercredits {
        display: block;
    }
    
    .footercredits {
        display: none;
    }

    I just tested on my site and it works, but let me know if it doesn’t for you.

    #101349

    Hey,
    Yeah so you don’t ever want to override a functions file. You can remove or edit parent themes functions from a child theme using hooks and filters. But you will always cause issues if you try to replace a whole functions file.

    2. I’m seeing the site working properly.

    3. for what your wanting I would use css like this:

    @media (max-width: 480px){
     .topbarmenu ul li a.cart-contents {
        text-indent: -9999px;
        width: 100px;
        position: relative;
    }
    .topbarmenu ul li a.cart-contents i.icon-basket {
        position: absolute;
        left: 10px;
        text-indent: 0;
        line-height: 30px;
    }
    .topbarmenu ul li a.cart-contents .woocommerce-Price-amount.amount {
        text-indent: 0;
        position: absolute;
        right: 10px;
    }
    }
    
    #101340

    For example on your site: http://bluedega.com/product-category/merchandise/

    You can add a slider to that category by editing it and adding your slider shortcode into the category shortcode box.

    Ben

    #101332

    Hey,
    1. You need to go to the web files for your site navigate to wp-content/plugins/ and make sure to remove any folder called “kadence-slider”

    2. “near identical error” – anychance you can tell me the exact error you get?

    Ben

    #101328

    Hello Erik!

    the page that you’re linking to from the demo site is actually a product category page. here is some info from WooCommerce regarding product categories:

    https://docs.woothemes.com/document/managing-product-taxonomies/

    The demo site simply has a category that is called “Merchandise,” and that’s where the page is generated.

Viewing 20 results - 26,261 through 26,280 (of 39,333 total)