Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1299051

    I may be crazy but I swear when I was adding them yesterday they looked fine.

    But today each custom post type has a color section at the top with a background image applied and has a height of 50%. All the content below the color section is now displaying overtop the color section instead of under it like it should.

    Is this an issue with the page template I need to add to the child theme or something else?

    thanks!
    Nathan

    #1299255

    Hi nfgraphicdesign,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1299489

    Hi there, I have installed the plugin and sent to (Email address hidden if logged out) . Please let me know what you find. thank you!

    #1299723

    Hi nfgraphicdesign,

    Thanks for giving us admin access.
    This is now fixed.
    I have replaced this PHP code:

    	function avf_alb_supported_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = array('art-fairs' , 'mirus-exhibitions');
    		return $supported_post_types;
    	}
    	add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    	
    	
    	/* Add Avia-Editor to Archive */
    	function avf_metabox_layout_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = array('art-fairs' , 'mirus-exhibitions');
    		return $supported_post_types;
    	}
    	add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);

    with:

    	function avf_alb_supported_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = 'art-fairs';
    		$supported_post_types[] = 'mirus-exhibitions';
    		return $supported_post_types;
    	}
    	add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    	
    	
    	/* Add Avia-Editor to Archive */
    	function avf_metabox_layout_post_types_mod( array $supported_post_types ) {
    		$supported_post_types[] = 'art-fairs';
    		$supported_post_types[] = 'mirus-exhibitions';
    		return $supported_post_types;
    	}
    	add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);

    Best regards,
    Nikko

    #1299994

    awesome thank you so much!

    #1300022

    Hi nfgraphicdesign,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘custom post type not displaying correctly’ is closed to new replies.