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

Home / Forums / Search / Search Results for 'post'

Viewing 20 results - 20,261 through 20,280 (of 29,722 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #89395

    Hey,

    It’s really best to post a link. 🙂
    1. Assuming I understand what you’re asking: You would have to make a custom type page using the portfolio page template. In the template options you can choose to only show one category.

    2. In your theme options > portfolio options do you have masonry turned on?

    Ben

    In forum: Virtue Theme

    In reply to: Featured Projects

    #89389

    Hey Casey,
    Have you already created portfolio posts and a portfolio page? See here- https://www.kadencewp.com/creating-a-portfolio-page-with-virtue/
    If so, then you can just enable Portfolio Carousel in Theme Options > Home Layout.

    Hannah

    In forum: Virtue Theme

    In reply to: Blog Options

    #89383

    I think this will work for you:
    [kad_blog orderby=date items=5 fullpost=false cat="termine,veranstaltungen"]

    Hannah

    #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?

    #89377

    Hi, I just bought the Virtue theme and I’m trying to update from 3.5.7 to 3.5.8 and the update fails when trying to remove the old files. I’ve read about this issue here and could not find a definitive answer to why the fail. Plugins update just fine, just not this theme.

    here is the failure:
    ———
    Updating Theme Virtue – Premium (1/1)
    Downloading update from
    Unpacking the update…
    Installing the latest version…
    Removing the old version of the theme…
    Theme update failed.
    An error occurred while updating Virtue – Premium: Could not remove the old theme.
    All updates have been completed.
    ———

    I am working with the server admin to try and fix but he’s not familiar with WordPress and it’s qwirks. He says, all permissions are as they should be and if plugins are updating correctly, why not themes? It is a Windows server with the following settings:

    PHP Version: 5.5.30
    PHP Memory Usage: 21.66 MB
    PHP Memory Limit: 256M
    PHP Max Upload Size: 50M
    PHP Max Post Size: 8M
    PHP Safe Mode: Off
    PHP Allow URL fopen: On
    PHP Allow URL Include: Off
    PHP Display Errors: Off
    PHP Display Startup Errors: Off
    PHP Expose PHP: On
    PHP Register Globals: Off
    PHP Max Script Execution Time: 300 Seconds
    PHP Magic Quotes GPC: Off
    PHP open_basedir: Off
    PHP XML Support: Yes
    PHP IPTC Support: Yes
    PHP Exif Support: Yes ( V1.4 )

    Please help, I’d like to be able to do theme updates through WP.

    #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

    In reply to: Blog Options

    #89346

    Dear Hannah,

    Now it is working … great thanks – with the rght categoriy Blog wording …

    1 More question …. it is possible to get the view in a line ? That means same style like the normall view of the block …
    1 Line 1 Blogpost

    example 5 Lines of each Headline Blog

    Now I have in 1 line 3 blogpost ….

    WHat can I do to get in each line a big Picture and after in the same line ( not like now under ) the words of the blogpost ?

    Many thanks for helping

    Jenny

    #89336

    Hi Hannah,

    Yes, it is now working again.

    After posting my question, I was able to login again and disabled the iTheme Security plugin that I thought was only for security purpose.

    I reactivated iTheme Security and noticed slow speed again. So, I deactivated it and not going to use it for now.

    Do you have any experience with this plugin?

    Thank you for checking this for me.

    Cheers,
    Jay

    #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

    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

    In forum: Virtue Theme
    #89302

    1. You need to make sure your site url is https. So all your database is loading through https. Or install an override so that it’s forced https in the admin.. like this https://codex.wordpress.org/Administration_Over_SSL

    2. Shortcode is great, what is your “post per page” setting? Make sure that is at least 14.. see here: https://docs.woothemes.com/document/woocommerce-shortcodes/

    Ben

    In forum: Virtue Theme

    In reply to: Reduce Header Size

    #89298

    If you can post a link we can offer specific advice for your set up. Each header style is a little different.

    Ben

    #89297

    Sorry meant to post here:

    
    function kt_custom_skin_path() {
    	return get_stylesheet_directory() . '/skins/';
    }
    function kt_custom_skin_output_path() {
    	return get_stylesheet_directory_uri() . '/skins/';
    }
    add_filter('kt_skin_style_path', 'kt_custom_skin_path');
    add_filter('kt_skin_style_path_output', 'kt_custom_skin_output_path');

    ^ That should do it.

    Ben

    In forum: Pinnacle Theme

    In reply to: social links widget

    #89294

    Hey,
    It’s not possible with the theme widget. You would need to add links manually or use a plugin where you can set custom social icons like this: https://wordpress.org/plugins/easy-social-icons/

    Is your address registered with google business? Can you post a link?

    Ben

    In forum: Virtue Theme
    #89276
    This reply has been marked as private.
    In forum: Virtue Theme
    #89262

    Hey,
    Can you post a link?

    What version of the theme do you have installed?

    Ben

    #89254

    Hey Doru,
    can you post a link to your site to where your button is that you’re trying to target, css for this would depend on how you’re adding the button.

    Ben

    In forum: Virtue Theme
    #89239

    Please post a link to where you have one of these sliders outputting.

    Ben

    #89228

    I just saw that a friend of me wrote
    in settings
    CSS <?php icl_post_languages(); ?>

    Is it correct i have no idea

Viewing 20 results - 20,261 through 20,280 (of 29,722 total)