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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Portfolio Type Pages Filter
April 6, 2016 at 11:00 am #89395Hey,
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 ThemeIn reply to: Featured Projects
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 ThemeIn reply to: Blog Options
In forum: Pinnacle ThemeIn reply to: does yoast seo compatible with these theme?
In forum: Virtue ThemeTopic: 3.5.8 Theme Update Fails
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 *Login to see link
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.
In forum: Virtue ThemeIn reply to: Blank Pages after site migrate
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,
KevinIn forum: Virtue ThemeIn reply to: search page results in french
In forum: Virtue ThemeIn reply to: Blog Options
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 Blogpostexample 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
In forum: Virtue ThemeIn reply to: Error message after the latest Virtue Theme update!
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,
JayIn forum: Virtue ThemeTopic: CSS trade table price list
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 image2the 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, leealso any channce of Add arrow at the bottom of slider.
many thanks Lee
In forum: Virtue ThemeIn reply to: Products images fuzzy
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 ThemeIn reply to: Over typed product names
April 5, 2016 at 5:34 pm #893021. 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 ThemeIn reply to: Reduce Header Size
April 5, 2016 at 5:06 pm #89298If you can post a link we can offer specific advice for your set up. Each header style is a little different.
Ben
In forum: Virtue ThemeIn reply to: Define Layout Path for CSS Skins
April 5, 2016 at 5:06 pm #89297Sorry 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 ThemeIn reply to: social links widget
April 5, 2016 at 4:59 pm #89294Hey,
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 ThemeIn reply to: Over typed product names
In forum: Virtue ThemeIn reply to: Submit Review not working
April 5, 2016 at 1:12 pm #89262Hey,
Can you post a link?What version of the theme do you have installed?
Ben
In forum: Virtue ThemeIn reply to: kadence slider primary button background opacity
April 5, 2016 at 12:51 pm #89254Hey 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 ThemeIn reply to: Revolution slider fonts
April 5, 2016 at 12:30 pm #89239Please post a link to where you have one of these sliders outputting.
Ben
In forum: Virtue ThemeIn reply to: where is the widget for language selector
-
AuthorSearch Results


