Adding custom posts into avada wordpress - wordpress

I have installed and used a plugin called: Custom Post Type Maker. With this, I have created custom posts, in this case recipes. How do I now display these recipes or add them in like a custom post type with Avada? On my home page I would like to display them with similar settings to the blog post.

There is a paid plugin that extends Avada Builder for displaying Custom Post Type content. I searched but couldn't find a free alternative to that.

Related

Creating breadcrumbs using custom post type with custom taxonomy pods - WordPress

I've searched for a solution to add breadcrumbs using pods plugin to create custom post type with custom taxonomy.
It seems the YoastSEO has the built-in functionlity to make it work.
You can user Yoast SEO's built-in breadcrumbs functionality.
Open YoastSEO>Search Appearance>Breadcrumbs>Taxonomy to show in breadcrumbs for content types and choose the custom taxonomy created with pods.

Edit Custom Admin Page with Page Editor (e.g. Divi)

I'm looking for a way to Edit a custom Wordpress Admin Page with a page builder, like Divi.
To create custom Admin Pages I used the Plugin 'Custom Admin Page' and it seems like it's not a custom Post type, so the way to enable Divi via custom post types doesn't work.
Is there maybe a way to make the plugin page as a custom post type and then enable Divi through that?
You can read how to use divi to create templates for custom post types in this

Enabling divi builder on wooCommerce Product Pages

I purchased divi, it's a great 'drag and drop' builder to build page layouts.
However, on wooCommerce product pages, the 'use divi builder' button is not there.
Does anyone know the internal workings of the plugin well enough to allow for the button to appear on the product pages.
I did contact their support, but they don't seem to want to answer harder questions.
You can easily integrate the Divi builder into Woocommerce or any other custom post type for that matter with a small code snippet which can be added to your Theme's functions file. Remember to use a child theme whenever customizing theme core files such as the functions.php file as we will be.
If you are not familiar with a WordPress Child Theme you can always use one of my prefered plugins when in a crunch for time. Child Theme Creator by Orbisius
Here is the snippet to add woocommerce to the child theme, I also added a second custom post type to further show you how this example works.
// Begin Adding Divi Builder Support to Custom Post Type
function my_et_builder_post_types( $post_types ) {
$post_types[] = 'product'; // This is the name of the Woocommerce custom post type
$post_types[] = 'latest_news'; // My own custom post type I have added to my website.
return $post_types;
}
add_filter( 'et_builder_post_types', 'my_et_builder_post_types' );
// End Adding Divi Builder Support to Course Post Type
So what have we done here?
1st. We created our function
2nd. We specified our post types we want added
3rd. We added our new filter
There you have it, its that simple. This will allow you to better layout your description content on your woocommerce product pages.
I know that this answer is much down the timeline but I think it will be helpful for others who are trying to achieve the same thing.
This Elegant themes blog post describes a solution, the
Divi Commerce Plugin
and here is the link to Bolt Themes
Enjoy.
The Divi builder can't be activated on product pages. This feature is not supported.
This is with the Divi builder plugin and the Divi theme itself.
I personally feel that you will be using product / page functionality of you had Divi active on the single product pages.
From a user experience you will be loosing the direction to getting a client to add the product and checkout as the page will be out completely.
Use Divi for your main pages and marketing, keep the WooCommerce pages for the products!

Add Page Categories to Wordpress admin menu

I am using the Post Tags and Categories for Pages plugin for Wordpress 4 which allows me to sort pages into separate category.
I would like to add the page categories to the Wordpress admin menu but am struggling to find any tutorials covering this, does anyone know of a method for doing this or a plugin which can be used.
Appreciate the help
Well you can use a plugin called "Custom post type UI", it will allow you to create custom post types (kind of like pages ) and taxonomies (kind of categories).
Here is a great video tutorial for that, https://www.youtube.com/watch?v=qpeTZ3ghjtY

WordPress Custom Post Type and Custom Template

I have created my custom Post type on WordPress 3.5.1
So under Dashboard I see my custom Post type on the left hand side. So, I did a Add New under this Custom Type.
But I don't see any Template page I can choose for this Custom Type.
I create a file called archive-customtype.php that's a template page and put into my theme folder.
On the older WordPress to change different template you do a
From the Page Attributes meta box select Template > Custom Type and publish the page.
So my question, on this new 3.5.1 where do I select the template for this custom post type?
Right now it's using the default one.
Install the Custom post types plugin by iLocalize http://wordpress.org/plugins/types/. They have a lot of tutorials on how to add the custom posts to a page. This tutorial http://youtu.be/1SXyHbgjYaI here is the best I've found but there are more the wp-types website. Look up how to create a new page template on wordpress . org and place the code from the tutorial to the page template. Hope this helps.

Resources