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 - 27,981 through 28,000 (of 39,333 total)
  • Author
    Search Results
  • #89382

    Yoast is compatible with the theme. I have it running on my test site just fine. Can you possible post a link to your site?

    Are you all up to date on the theme and WordPress?

    #89381

    Try this in your browser right click then click “inspect” there should be a red notice if there is an error with your browser and a browser extensions can you send what that error says?

    On your second site I see the slider three quarters of the way down the page. Are you not seeing that either? Try using a differnet browser?

    Ben

    #89376

    Hey! It looks like the site is loading up some demo content. Is that what you’re wanting to display or have you made your own edits that aren’t showing up?

    Can you possibly post a screenshot of what you’re seeing?
    https://www.awesomescreenshot.com/

    Thanks,
    Kevin

    #89375

    Hey! Would it be possible for you to post a link to your site?

    Also, what are you using for your multilingual site?

    Thanks!,
    Kevin

    In forum: Virtue Theme
    #89370

    I created a child theme in a local site that I have to do a test, taking a lead from what I’ve downloaded from your page “Child Theme”, changing only the version number. But I get this error:

    The following themes are installed but incomplete. Themes must have a stylesheet and a template.

    The father theme is missing. Install the father issue “virtue_premium”.

    This is the style.css content:

    /*
    Theme Name: Virtue – Premium Child
    Theme URI:
    Description: Child theme for Virtue Premium
    Author: Kadence Themes
    Author URI:
    Template: virtue_premium
    Version: 3.5.2
    */

    Thanks…

    #89369

    hello

    my site is cesartv-tempsite.com

    and i am wanting to get rid of the shadow around the page.. i used this code:

    .boxed #wrapper.container {
    -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,.0)!important;
    /* box-shadow: 0 0 5px 1px rgba(0,0,0,.0)!important; */
    margin-bottom: 0px;
    }

    and it works great on all browsers except for firefox. can you tell me a better way to do it?

    #89360

    I’ve noticed that I have stacking/overlapping issues with mainly my homepage for the SiteOrigin features for mobile. It looks like they go under my revolution slider and appear again on top of the second set of features. Is this because I’m using revolution slider in the middle of the page?

    Here’s my site:

    In forum: Virtue Theme

    In reply to: Ajax Loader

    #89358

    hi Hanna I checked the site with Xenu Link sluth to see if there are any 404 errors, thia is the only one that comes up ajax-loader_2x.gif

    should be in the folder /virtue_premium/assets/img/ but its not (its being requested by the stylesheet virtue.css but the GIF is not in the /virtue_premium/assets/img/ folder so it shows a 404 error.

    #89354

    When i install that plugin products of my site not showing it shows page 404 error when i removed it its working fine. what to do now?

    #89343

    Good morning everyone!

    I just purchased your theme some days ago! I started on my test server and then, when i bought the package on another server, i transfered my site there(yesterday)! It was ok yesterday but now all i see is blank pages! Check homepage! There are things there but i can’t see anything! Is there a problem after the transfer and nameserver thing? Site’s link is the following:

    Thanks for your time!

    In forum: Virtue Theme
    #89340

    Hi Ben and Hannah
    I’m reading a lot about using hero shots as opposed to sliders, and just as I was beginning to do a slider for a new site using virtue.
    I’m going to not do my normal slider and do a side by side Hero Shot with a button and title.

    In Virtue, what’s the best way to configure a static Hero shot instead of a slider? you guys have it nicely designed and I want to keep it as plug and play as possible.

    Any thoughts on the matter are welcome

    #89334

    Hey Jay,
    I just checked your site from three different browsers and it seemed to be working fine in all. Have you cleared your cache? How did you go about updating?

    Hannah

    In forum: Virtue Theme
    #89331
    This reply has been marked as private.
    #89330

    The contact forms I found seem to depend on the main language of the website and I added CONTACT FORM 7 and am translating the lines myself and installed that form in the french contact page while I kept the Clean and Simple Contact Form in english. Parts of the Contact Form did not appear in the strings translation for Polylang. I assume that this is normal.

    The only thing left is to figure out how to add the captcha in both languages…

    #89329
    This reply has been marked as private.
    #89325

    Hello Ben!

    Changing the font etc… worked nicely!

    I am still trying to figure out how to make the plugin [cscf-contact-form] in french…just confirmed; according to plugin author, I must choose one language for the whole site. I will try to find a french plugin which I could put only on the french contact page…

    #89311

    css issue trade prices on marquee matting website table. I have used the same. Ive used the custom css and .js on my 🙂 SEO expert website here without issue, when a device with smaller screen and/or screen rotation (including ipad) is used to view the page as per fitefox and chrome inspect for device screen sizes and rotation Looked here for css version AND here for resolution for IPAD css display and finaly css borders.

    CSS

    table {
    border-collapse: collapse;
    }

    table, td, th {
    border: 1px solid #ccc;
    }


    @media
    only screen and (device-width: 600px) and (device-height: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    table {width:100%;}
    thead {display: none;}
    tr:nth-of-type(2n) {background-color: inherit;}
    tr td:first-child {background: #f0f0f0; font-weight:bold;font-size:1.3em;}
    tbody td {display: block; text-align:center;}
    tbody td:before {
    content: attr(data-th);
    display: block;
    text-align:center;
    }
    }

    And

    .js
    <script>
    var headertext = [];
    var headers = document.querySelectorAll("thead");
    var tablebody = document.querySelectorAll("tbody");

    for (var i = 0; i < headers.length; i++) {
    headertext[i]=[];
    for (var j = 0, headrow; headrow = headers[i].rows[0].cells[j]; j++) {
    var current = headrow;
    headertext[i].push(current.textContent);
    }
    }

    for (var h = 0, tbody; tbody = tablebody[h]; h++) {
    for (var i = 0, row; row = tbody.rows[i]; i++) {
    for (var j = 0, col; col = row.cells[j]; j++) {
    col.setAttribute("data-th", headertext[h][j]);
    }
    }
    }
    </script>

    as per instructions of How to Create Responsive Tables in WordPress

    however im having an issue with screen size.

    I ve tested with chrome inspect and cant work out the issue.

    As a side note the colapsed header menu in my customised heade with shopping cart displays incorectly. (im wondering if this is related?) or is it related to the use of a side bar on this page?

    supporting image1
    supporting image2

    the only difference between the sugested table layout and my own is

    <table class="table table-bordered table-hover table-condensed">

    <table class="table table-bordered table-hover table-condensed"><thead><tr><th title="Field #1">Item</th><th title="Field #2">Price</th><th title="Field #3">Pack size</th><th title="Field #4">Length</th><th title="Field #5">Width</th><th title="Field #6">Weight</th><th title="Field #7">Mpn</th><th title="Field #8">Weave</th><th title="Field #9">Yarns</th><th title="Field #10">Colour</th></tr></thead><tbody><tr><td data-th="Item">Coir Matting</td><td data-th="Price">£200.00</td><td data-th="Pack size">Single</td><td data-th="Length">12.2m</td><td data-th="Width">1.8m</td><td align="right" data-th="Weight">40.00</td><td data-th="Mpn">12-2m-MM</td><td data-th="Weave">Herringbone</td><td data-th="Yarns">Anjengo/Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Matting</td><td data-th="Price">£370.00</td><td data-th="Pack size">Single</td><td data-th="Length">20.1m</td><td data-th="Width">2m</td><td align="right" data-th="Weight">60.00</td><td data-th="Mpn">20-1m-MM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mat</td><td data-th="Price">£55.00</td><td data-th="Pack size">Single</td><td data-th="Length">3.7m</td><td data-th="Width">1.85m</td><td align="right" data-th="Weight">9.68</td><td data-th="Mpn">3-7m-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mat</td><td data-th="Price">£72.50</td><td data-th="Pack size">Single</td><td data-th="Length">4.3m</td><td data-th="Width">2.15m</td><td align="right" data-th="Weight">13.07</td><td data-th="Mpn">4-3m-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mat</td><td data-th="Price">£92.50</td><td data-th="Pack size">Single</td><td data-th="Length">4.9m</td><td data-th="Width">2.45m</td><td align="right" data-th="Weight">16.97</td><td data-th="Mpn">4-9m-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mat</td><td data-th="Price">£115.00</td><td data-th="Pack size">Single</td><td data-th="Length">5.55m</td><td data-th="Width">2.75m</td><td align="right" data-th="Weight">21.38</td><td data-th="Mpn">5-5m-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mat</td><td data-th="Price">£140.00</td><td data-th="Pack size">Single</td><td data-th="Length">6.1m</td><td data-th="Width">3.05m</td><td align="right" data-th="Weight">26.30</td><td data-th="Mpn">6-1m-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mats x 2</td><td data-th="Price">£110.00</td><td data-th="Pack size">Pair</td><td data-th="Length">3.7m</td><td data-th="Width">1.85m</td><td align="right" data-th="Weight">19.35</td><td data-th="Mpn">3-7m-P-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mats x 2</td><td data-th="Price">£145.00</td><td data-th="Pack size">Pair</td><td data-th="Length">4.3m</td><td data-th="Width">2.15m</td><td align="right" data-th="Weight">26.14</td><td data-th="Mpn">4-3m-P-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mats x 2</td><td data-th="Price">£185.00</td><td data-th="Pack size">Pair</td><td data-th="Length">4.9m</td><td data-th="Width">2.45m</td><td align="right" data-th="Weight">33.94</td><td data-th="Mpn">4-9m-P-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mats x 2</td><td data-th="Price">£230.00</td><td data-th="Pack size">Pair</td><td data-th="Length">5.55m</td><td data-th="Width">2.75m</td><td align="right" data-th="Weight">42.77</td><td data-th="Mpn">5-5m-P-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr><tr><td data-th="Item">Coir Mats x 2</td><td data-th="Price">£280.00</td><td data-th="Pack size">Pair</td><td data-th="Length">6.1m</td><td data-th="Width">3.05m</td><td align="right" data-th="Weight">52.60</td><td data-th="Mpn">6-1m-P-HM</td><td data-th="Weave">Panama</td><td data-th="Yarns">Vycome</td><td data-th="Colour">Bright/Natural</td></tr></tbody></table>

    instead of

    <table>

    i have some custome .css in the head an the header is modified

    sorry for long rambling post,
    regards, lee

    also any channce of Add arrow at the bottom of slider.

    many thanks Lee

    #89310

    Hi Ben,

    I have got a problem with my site since my last Virtue Premium update this morning.

    I have problem accessing the site both from front-end and back-end:

    When I try to access the site:


    or

    In chrome, I get the following message:

    The ckingsensors.com page isn’t working
    ckingsensors.com is currently unable to handle this request.
    500

    In Safari, I just get an blank page.

    I called my hosting company three times and talk to three different guys almost one hr with each of them.

    Their answer is that the issue is with my wordpress and Theme. Something is trying to make an update on my site but it is not successful and it tries again after short time and whenever the update attempt is taking place, I can’t access my site.

    As soon as I could login in the back-end, I disabled all the plugins but I still have the same problem described above.

    Please help.

    Thank you very much,
    Jay

    In forum: Virtue Theme

    In reply to: Products images fuzzy

    #89308

    Hey
    1. You get notifications from the theme. When there is an update available from the theme you can update from apperance > theme recommended plguins.
    2. Yes but more native to wordpress. VC is more shortcode based.
    3. No, just means you can’t use it’s features.
    4. no if it’s inactive then it’s not running.
    5. They are good and middle range in terms of price… hard to fully recommend any host they all have negatives and positives. It really depends on what your needs are. For example in terms of price if you need the most value then some shared host is going to be your best option or if you are wanting the control and dedication of VPS then it’s different. Also how many sites, how much traffic, how large of sites… all goes into play.

    Regardless of who you pick I have found that it’s best to host domains with someone else and manage your account so it’s easy to transfer because it seems to me that hosts are really good until they get too big then things go downhill. 🙂

    Ben

    In forum: Virtue Theme

    In reply to: Products images fuzzy

    #89306

    Okay cool
    last questions :

    1.the slider revolution that comes with your theme is upgraded together with all the updates of your theme or do i need to update individually and if so how ?
    2. the SiteOrigin Page Builder is like visual composer basically ? i haven’t used it yet so not sure …
    3. if i deactivate the SiteOrigin Page Builder is it going to affect the look and function of the theme in some way ?
    4. you mention in the post on speeding the site the issue of plugins ..do inactive plugins also affect speed .do you think ?
    5. you recommended for hosting this site https://asmallorange.com/ ..i need to get better hosting for some sites ..so you still of the opinion that they are good hosting ?

    Thanks

Viewing 20 results - 27,981 through 28,000 (of 39,333 total)