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 - 30,521 through 30,540 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Disappearing photos

    #109085

    Hi Ben,

    This is my site: http://robinkickmw.com/

    But the first picture is missing. The first picture that does show is actually the last in the line-up on the Home Slider/Flex Slider settings page. The one I would like to show as first is the first one in the line-up, but not showing at all.

    Thanks for your help,

    Robin

    #109084

    Hey,
    Try going to the page in chrome. Right click and click “inspect” in the developer tools on the top right look for a red icon. click it and see what the error is.

    Please make sure all of your plugins and the theme are up to date. Theme is 3.8.5

    Ben

    In forum: Virtue Theme

    In reply to: revolution slider

    #109075

    See all the woocommerce shortcodes here (you can pull in just one product): https://docs.woocommerce.com/document/woocommerce-shortcodes/

    If you want to create a marketing landing page. (not your home page) you can use the landing page template and page-builder to build a custom page.

    Ben

    #109059

    This wouldn’t be a theme thing because thats a woocommerce output. but it’s something I can add to the features list in the Kadence woo extras plugin.

    But really the easiest option would be for you to add a redirect. So instead of landing on the default thankyou page you redirect to your own custom page. https://wordpress.org/plugins/safe-redirect-manager/

    Ben

    #109058

    Trying to implement this feature/plug-in. I think I now have it set up properly – it shows up correctly in the sidebar on my shop page. Only problem is it doesn’t filter, i.e. selecting the sub-attribute I assigned to just a few products to test results in all product being shown. Wondering if I need to change any of the “FrontEnd Settings” of the plug-in – perhaps Virtue uses a different name for the Product Container (default is .products)? As a review here are the steps I took to set-up:

    1. Installed and activated the plug-in.
    2. Created an attribute called “product type” and added a few sub-attributes to it, and assigned these to the products I want to filter.
    3. Created a new sidebar, called “sidebar2” in “Theme Options/Misc. Settings” and in the Widgets section added the Yth product filter plug to it that sidebar, and configured the plugin to use the “product type” attribute.
    4. On my shop page, I selected “sidebar” for the template and assigned “sidebar2” to it.
    5. In Shop Settings, I chose to “Display Sidebar on Shop Page” and chose “sidebar2” for it.

    Think that covers it.
    (fyi, I have this set up on a testing site, not the real one. Let me know if you would like/need a link to that and I will private reply it)
    Thanks!
    Dave

    #109045

    To update, I do realize that the place to add a new custom sidebar is under “Theme Options/Misc. Settings”. I just did that with a new sidebar, which now does show properly, but the Customize page still loads blank.
    (also not having luck getting the Ajax plug in to work, but will post about that in it’s appropriate thread if I can’t figure it out!)

    #109044

    Hello Ben. I uploaded a couple new photos to the front page of my site. It has been a while since I changed this area but it seemed to go okay. But now, the main photo is not showing up. It was better when it was amongst the pack, but when I moved it to the first position, it disappeared. Any idea how that may have happened? Also the last photo I uploaded seems to now be the first one that appears though it is at the bottom of the list. How can I change this?

    Thanks.

    #109041

    Hi,

    My child theme CSS changes the home page pagination, but not the blog posts with pagination.

    Here’s a post w/ pagination:

    The homepage’s pagination is what I want all pagination to look like:

    I had it working in the free vsn. of Virtue, but when I started trying to add the classes found in the blog post pagination div, I couldn’t get it to work right. Please tell me how to fix my child CSS (below) to get it to also style blog post pagination.

    Thanks!

    larger navigation numbers on latest posts home page
    */
    .wp-pagenavi {
    text-align: center
    }
    .wp-pagenavi a,
    .wp-pagenavi span {
    padding: 34px 20px 34px 20px;
    font-size: 50px;
    font-weight: 700;
    margin: 5px 5px 20px 5px;
    display: inline-block;
    border: solid 4px #eee;
    border-color: rgba(0, 0, 0, .05);
    -webkit-transition: border .2s ease-in-out;
    -moz-transition: border .2s ease-in-out;
    -ms-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
    }
    .wp-pagenavi a:hover {
    border-color: #c72c00;
    background: url(../img/20black.png);
    background: rgba(0, 0, 0, .05)
    }
    .wp-pagenavi .current {
    background: url(../img/20black.png);
    background: rgba(0, 0, 0, .05)
    }
    /*
    larger navigation numbers on paginated blog posts
    */
    nav.page-nav p {
    padding: 34px 20px 34px 20px;
    font-size: 50px;
    line-height: 1.5em;
    font-weight: 700;
    margin: 5px 5px 20px 5px;
    display: inline-block;
    border: solid 4px #eee;
    border-color: rgba(0, 0, 0, .05);
    -webkit-transition: border .2s ease-in-out;
    -moz-transition: border .2s ease-in-out;
    -ms-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
    }

    nav.page-nav a {
    margin: 1px 14px 1px 14px;
    }

    Some of what I changed to was doing was this, and it started blowing up other things like my Jetpack Share icons… so I came here.:

    /*
    larger navigation numbers on paginated blog posts
    */
    nav.page-nav.pagination.kt-pagination p,span {
    padding: 34px 20px 34px 20px;
    font-size: 50px;
    line-height: 1.5em;
    font-weight: 700;
    margin: 5px 5px 20px 5px;
    display: inline-block;
    border: solid 4px #eee;
    border-color: rgba(0, 0, 0, .05);
    -webkit-transition: border .2s ease-in-out;
    -moz-transition: border .2s ease-in-out;
    -ms-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
    }

    nav.page-nav.pagination.kt-pagination a,span {
    margin: 1px 14px 1px 14px;
    }

    #109040

    Hey there,
    I am trying to create a new sidebar, for the purpose of using the Yth WooCommerce Ajax Product Filter on the shop page. However I am having some trouble with the Appearance tab. The “customize” selection loads to a blank page. The other selections (Themes, Widgets, Menus, etc.) open up fine, but nothing for Customize.
    As added info, I had created this new sidebar in the past (few weeks ago), and it was there. Today started the process of setting it up, but it is all of a sudden missing in action.
    Any suggestions?

    #109039

    Hello,
    I want to know how to add image to this list of recipe posts?

    OR can you suggest a better format for this perhaps a portfolio style?

    Thanks!
    deb

    #109038

    Hi Kevin.

    I opened this topic again because there’s one detail that is not good.
    In 12 of July I wrote this:

    “1.
    I had “Gallery Post default”.
    I already changed to “Landscape Image (feature image)” and it works.

    Just a question… If I have a landscape image and choose “Portrait Image (feature image)”, theme assume landscape format.
    Or if I have a portrait image and choose “Landscape Image (feature image)”, theme assume portrait format.
    It’s not possible to “fix” the format?
    If I choose (for example) “Landscape Image (feature image)” and I have a square or portrait image, the theme fix landscape format.
    This also because, if I have one cut image that does not have original sizes, it will not be perfectly formatted.
    For example, like is happening now: http://www.lapetitebrune.com
    (This is not a big issue. Just to know if it’s possible or if I need to have attention to this detail.)”

    This is regarding the images post in my Homepage.

    http://www.lapetitebrune.com

    I was asking how to put all images with the same size, symmetric.

    As you can see, in posts “Annecy #1” and “Lac de Monteynard-Avignonet” I have vertical feature images.
    And they are shown unformatted.
    I would like to have each rectangle of the same size but without unsize the image.
    To you get what I mean?
    Without compress the images in cases of portrait feature image.
    And without extend the images in cases of landscape feature image.

    How can I fix this?

    Thank you.

    Regards,
    Carla

    In forum: Virtue Theme
    #109035

    Hi,

    I have a parallax scroll style display on my home page but I can’t get the background image to stay still. When I scroll, the parallax effect is there, because the scroll speed is faster than the movement of the background image, but I would like to have the background image stay completely still. How can I achieve this?

    Here is my home page: http://www.mediastockroom.com

    Thanks very much,

    Jane

    In forum: Virtue Theme

    In reply to: revolution slider

    #109023

    Hey Donny,
    If you have the revolution slider activated you would see a Slider Revolution tab in the admin panel. If you don’t see this you can go to Appearance > Theme Recommended Plugins and activate from there.
    You can add products to your homepage from Theme Options > Home Layout. Or you can use a shortcode like this: `[recent_products per_page=”12″ columns=”4″]
    `
    Hannah

    #109020

    Hey Hanadi,
    You cannot use a template on the homepage as it will just be overridden by the homepage template. If you want to show portfolio posts on the homepage you can either use Portfolio Full from Theme Options > Home Layout. Or you can use a shortcode like this: [portfolio_posts orderby=date excerpt=false columns=4 items=4 height=200 lightbox=true showtypes=true]

    Hannah

    In forum: Virtue Theme

    In reply to: Tweaks

    #109009

    Can a full page navigating be accomplished in this Theme?
    See example. https://www.tumblr.com/

    #109006

    the css that u gave me for background #fff was working but am not satisfied with it
    can u give me a css that all the container background be white just in products pages ?

    #108991

    Dear sir or madam,

    I am using Virtue Premium theme. The reason that I bought it is to use the projects pages option (portfolio). One the main requirements for my website is to create archives of the blog posts and portfolio posts. The blog posts in my website are automaticlly archived. I only need to create an archive of the portfolio posts.

    Would you please help me getting this working?

    Thank you.

    Gr,

    Amel

    #108984

    Hello,

    I have some strange issue which I am not able to figure out what is happening. It is first time to happen.
    When Virtue theme is active I can not use any of ajax stuff from wp admin, as I see because of this : admin-ajax.php?_panelsnonce=3bbedd825a 500 (Internal Server Error)

    I tried to delete all plugins and install fresh, deleted virtue and upload fresh one, but I keep getting same error(in inspect can see that) I mean no ajax work, for widgets, plugins or any other in admin. Also I check when other theme is active and it is working. Strange is that on all other websites on which I use virtue all works fine. This happened without any of my messing with code, I was entering content with page builder.

    Does anyone have any idea what happened and how can I fix it?

    Thank you in advance. 🙂

    #108977

    Hi, in my latest blog post in front page why the blog post title is smaller than the content? i want to change the size of the blog post title, where i can change that? thank you

    #108972

    No, should I use one?

    I’ve activiated WP Super Cache, but I still do not see the photo gallery on the home page.

Viewing 20 results - 30,521 through 30,540 (of 53,646 total)