Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #446407

    I’m using Enfold and Toolset framework. Toolset is used to create Custom Post Types and Content Templates.

    Normally, when I define a Content Template and link this to the Post Type – I will get the page exactly as defined by the content template.
    This Content Template will replace the content of Single (custom)post type.

    By using Enfold, there remains always a header with all kind of stuff.

    How can I force that only the content as defined by the content template is being displayed?

    I have created 2 Cust Post Types. For both I have created also a Content Template via Toolset.
    However, for the CPT that is called Ritten, I do get a single view with no options to go to the next and prev. (See attachment 1)
    For the CPT called “Jobs”, I do get this option to go to the prev and next items.
    How to manage this feature?

    #447801

    Hey stedia!

    as I already told you in your other thread, we can’t provide support for any of the thousands plugins out there. Please contact the plugin’s author. Kriesi already knows about the problem between types and Enfold and he might think about a fix in future updates.

    However, what exactly do you want to remove on the links you have provided? can you highlight in screenshot what you don’t need (imgur.com, dropbox)? if you want to remove blogs’s meta use this code in Quick CSS:

    .blog-meta {
    display: none !important;
    }
    

    If you want to remove the blog’s template use this:

    .container.template-blog.template-single-blog {
    display: none;
    }
    

    Hope this helps.

    Regards,
    Andy

    #448060

    Andy,

    I thought I attached these files. But here are the examples again.

    http://grab.by/HtwA The high lighted area is what I would like to remove. I expect that the “display: none” will work here.

    http://grab.by/HtwA to see the areas on the left and the right. Here I have two questions:

    1) How to remove these navigation?

    2) Why do I have this navigation for one CPT and for another CPT I don’t have this. How is this controlled for Custom Post Type that are added?

    #448061

    Andy,

    I thought I attached these files. But here are the examples again.

    http://grab.by/HtwA The high lighted area is what I would like to remove. I expect that the “display: none” will work here.

    http://grab.by/Htx6 to see the areas on the left and the right. Here I have two questions:

    1) How to remove these navigation?

    2) Why do I have this navigation for one CPT and for another CPT I don’t have this. How is this controlled for Custom Post Type that are added?

    #448890

    Hey!

    1. Use the following CSS code:

    #top.single .entry-content-header, #top.single .blog-meta {
        display: none !important;
    }

    2.1. Use the following CSS code:

    #top .avia-post-nav {
        display: none;
    }

    2.2. Works out of the box with Posts and Portfolio Items, you may be able to mod it for other CPTs, however the previous code will disable it for all types of content.

    Best regards,
    Josue

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.