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

    In reply to: Custom Staff Grid

    #33155

    You would be better off using the staff post shortcode and just adding to a sidebar page.

    One column with the image on the left isn’t a built in option so you would need to use some custom css for that part.

    Here is the shortcode I would use:

    [staff_posts columns="1" items="-1"]

    then add css like this:

    @media (min-width: 992px){
        .grid_item.staff_item .imghoverclass {
            width: 40%;
            float: left;
            padding-right: 15px;
            padding-top: 15px
        }
        .grid_item.staff_item .staff_item_info {
            width: 60%;
            float: left;
            padding-left: 15px;
        }
    }
    

    Ben

    In forum: Virtue Theme
    #33145

    I’ve been trying for a couple hours to solve this, but I don’t see why the CSS is working on the home page and several others, but not on the categories and product pages. It appears as though the same class… .custom-icon-home for example is at all these locations. What am I missing?

    In forum: Virtue Theme

    In reply to: permalinks

    #33144

    Hello Ben,
    I’m having a similar issue, but I don’t see how to solve my problem…I’m doubting that could be due to a wrong approach….

    The point is that I would like to have a general portfolio page including all my different portfolio categories and as many single portfolio pages as many categories I have.
    Let’s say I have a portfolio “main page” with url: mysite.com/portfolio and what I’m trying to reach is to have pages such as mysite.com/portfolio/category-1(2,3, etc) each one with its own /items-1(2,3, etc).

    What I did is, as you suggested, to set in the theme options > portfolio base my desired structure portfolio/%category%.

    Then, I create a main portfolio page with Portfolio Grid as template and “portfolio” as custom permalink. And it worked.
    Then, I create a child portfolio page with Portfolio Grid as template and “category-1” as custom permalink. And it does not work. Meaning that when I move among the category-1 items everything works perfectly until the moment in which I click on the grid icon…when I do it, even if the url it says is going to reach is the one of the child portfolio page, the server answers 404. But even more weird (but I’m not a WP expert) is that if I go back to editing mode of the child portfolio page and click on preview…I get 404 again.

    Hoping to have explained well enough what I’m experiencing, do you have any suggestion on how to fix the matter?

    Thank you very much in advance

    Matteo

    and what I got is to have perfectly working the urls of the single items page, but when

    In forum: Virtue Theme
    #33138

    Hi I would like to create a staff page with sidebar. I addition, I would like to have a single column with the featured image floating on the left.

    How can I do this? I created a copy of the Staff Grid template into my child theme and was able to make some of these changes, but the page with the custom template does not show the Staff Options.

    Thank you for your help.

    #33135

    In the menu page, top right corner click “screen options” make sure “link target” is checked, then in the menu item click the check box for open link in a new tab.

    Ben

    #33130

    Thank you, thank you Ben!

    RE: http://www.nanedwardscollection.com

    Hopefully this will be my last question for awhile! My Blog is housed at nanedwardscollection.wordpress.com/author/nstombaugh/ My website has a link to this page. How do edited the blog link so that it will propagate to a new tab instead of forcing the user to have to hit the back button once they have visited this page to return to the site?

    Thanks, Nan

    #33126

    Incidentally, this is also an issue on the home page with a virtue short code with the number set at 12. It still only shows 9.

    #33125

    Hi,

    I am having an issue with the built in blog page. I found another post and did what you had recommended (leaving the post page blank in the ‘Reading’ Settings). In the Virtue theme settings I have unlimited scrolling for both blog and archive, turned on AND pagination, but for some reason I only have 9 showing up on that page and no pagination.

    I’m probably missing something. As a note I also have 100 posts enabled in the “Reading” Settings, not that it makes a difference with the above settings.

    Thanks,
    Isaac

    In forum: Virtue Theme
    #33124

    It’s not really an option, you would have to use a child theme and edit code, are you comfortable doing that? If not this would fall into the zone of needing a developer.

    The closest thing you can do with the theme options is make the logo layout have a header widget, then with a little css you could make the logo fullwidth and the widget full width, that would allow you to have
    logo
    widget area(slider)
    menu

    in your header. Thing is you would have to use some other plugin to hide that widget area on pages where you didn’t want the slider.

    Ben

    In forum: Virtue Theme

    In reply to: Turn off page titles

    #33114

    If you want this to take affect on all pages you don’t need a page id. You can just use this:

    .page-header {
    display: none;
    }

    The id specify’s it for certain pages.
    The classes of an id actually vary. Some are .pg-id-#, some are .page-id-#, some are .post-id-#, etc.

    Hannah

    #33106

    I get the detail page when I click on one of the services. That is automatic I didn’t create pages for each product http://abricot.abricot-production.com/forbinservices2.png

    Sorry wrong link http://abricot-production.com/forbinservices2.png

    #33105

    You have a services plugin installed. It creates a custom post type called “services”. That is using the standard “post” template because your plugin isn’t adding a special template for the custom post type.

    This has nothing to do with the theme or a theme settings your plugin isn’t styling the page.

    Ben

    #33103

    You sent a print of your services page: http://abricot.abricot-production.com/services/

    Not the same as the link above.

    Ben

    #33101

    So in the sidebar of the admin you click on pages > all pages and it’s there?

    Everything in the code shows custom post type. So what plugins are you using?

    Ben

    #33100

    It’s a page and on the site it’s selected to ‘default template’

    #33099

    It’s not a page. It’s post, it’s a custom post type right?

    Ben

    #33098

    The ‘default template’ is selected for this page

    #33090

    You can use this css:

    .sidebar li {
    line-height: 30px;
    border-bottom: solid 1px #e5e5e5;
    border-color: rgba(0,0,0,.05);
    }

    But it looks like your sidebar is different then on the service page. Are you using a plugin to show or hide widgets based on the page?

    Ben

    In forum: Virtue Theme

    In reply to: Turn off page titles

    #33081

    Ye that worked. Dont quite get it though cause that was the code I used to start with. However. Great. So I just repeat this for all my pages then.
    Paul

    In forum: Virtue Theme

    In reply to: Turn off page titles

    #33080

    Try using this:

    .page-id-4848 .page-header {
    display: none;
    }

    Hannah

Viewing 20 results - 46,901 through 46,920 (of 53,646 total)