Wordpress Multiple Category Descriptions - php

How do you enable multiple category_description(); on wordpress category description pages? What I have been able to find out is that you can only have one on a category page. I may be wrong, that's why I'm here :)
The codex https://codex.wordpress.org/Function_Reference/category_description doesn't seem to say anything about enabling multiple category_descriptions for categories.
I would really love to have one description at the top (before the content), and one description below (after the content) in the front end. Trying to use this on a woocommerce product category page. Most hosted ecommerce platforms have this description above and below implemented. Of course, this will be useful for all post types as well. Any help appreciated!

You need to create an extra field hook. Have a look at this.

Related

How to design unconventional woocommerce shop?

First a line about me: I have skills in html & css but no skills in php. I am new to wordpress, but I learned already to build a wordpress theme for my own from scratch. If I had a problem, I always found a solution on the internet. Now I have a problem and after searching for hours, I haven’t found any helpful tips.
I want to make a website with a little webshop inside, only one product for now. I did choose WooCommerce because it is popular and i thought maybe it works like wordpress. Now I have the problem that I have no idea how to design my site. I am sitting in front of countless files with code i do not understand. I want something similar to thie website below. Right half with an image and left half with product title, description and “add to cart” button. No category, no filters, no shop overview. Just a front page with one product.
Is it possible to do the same like designing a wordpress theme like <h2><insert title code></h2> then <p><insert product description code></p> or does WooCommerce works completely different? All tutorials I found were not helpful for me.
http://ilyaskin.com/mono/
There is a lot of question here then I will answer to one of these and I think it's better to create a new discussion for each other question.
If you to have only a product, you can start to put a shortcode to display the product details with button "add to cart" :
https://docs.woocommerce.com/document/woocommerce-shortcodes/#section-12
The next step is to customise the display and for that, the first question is to know if the theme can be updated. If yes, you have to start with a child theme :
https://developer.wordpress.org/themes/advanced-topics/child-themes/

Populating a WordPress Page with posts from a Category or Tag

I have a WordPress for my science journalism blog and I would like to add a page that contains a subset of the blog posts. For example, having a page populated by a certain category (i.e. review articles) or tags (i.e. physics).
There seems to be a way to do this by making a new php page, but I am not sure how to get to a blank template to add the code base.
Alternatively, I would prefer having a way to do this without having to mess with the code at all. Any help would be much appreciated. Thanks!
This happens automatically with WordPress; read the docs:
When a viewer clicks on a link to one of the Categories on your site,
he or she is taken to a page listing the Posts in that particular
Category in chronological order, from newest Posts at the top to
oldest at the bottom.
Read https://codex.wordpress.org/Category_Templates
You don't have to make a category or tag template page, but you can if you want to. This is theme-dependent; your theme may already have different archive page templates.
The URL for a category or tag archive page will be:
example.net/category_base/category_name
example.net/tag_base/tag_name
Read https://codex.wordpress.org/Using_Permalinks#Category_base_and_Tag_base
Go to Appearance>Settings>Reading to set number of posts per page and either excerpt or full post.
I think you should be able to get at a category by going to http://example.com/category/mycategory
And to tags by visiting http://example.com/tag/mytag
You should be able to add categories to the main menu, and add tag pages via a custom link OR use a tag cloud?
Hope this helps.

Wordpress: Adding meta values like title and description for Pages from custom database

I have a plugin that creates plugin specific database table rows that then are turned into pages. I have got this work with URL redirect and have been able to lay out the page. Now I am having some problems.
Problems:
Creating header title for the page. It currently shows page not found.
Creating description for meta SEO. Meta description is currently blank.
Showing these custom created pages to be added in WP menu.
I know these are not pages, and I have lost most of the wp functionality by doing this and not using custom post types but one of the main requirements of the clients was that the database have separate tables for their data.
I need some help or reference regarding these problems. Links for examples and articles would do or any free plugins that actually do this.
I'd really appreciate the help.
As you mentioned your self, using your current technique you will not able to take advantage of WordPress in real sense. You may use custom posts and then use wp cron to copy get the data from there to your own table.

Portfolio Filter for wordpress

I am in the process of making my co's website on a wordpress theme and I have a slight bit of a problem. By default the category filter open 'all' even if a particular product is selected.
I am not well versed in php, and would like to sort out this issue. Here is the link for your reference. http://test.danubewelfarecenter.com/four-columns/wall-panel/.
The support team for the theme is not really giving us any help. Would be grateful if you could help us. If we select any product from the main navigation menu, we would like the page to open with the filtered results than the default "all". However, the category filters must not be removed from the page and can be used to filter other products as well.

Magento filters url rewrite

I've got one task about Layer Navigation block on site, powered by Magento.
We want to make a SEO friendly URL's in filters:
Now there are links like
mymagazine.ru/category/subcategory1?manufacturer=1926
As you see - manufacturer=1926 is a GET-parameter, which just filter the products.
So I need to make this link like
mymagazine.ru/category/subcategory1/my_manufacturer
Where "my_manufacturer" is an allias to "?manufacturer=1926".
There is one way to do this task: we can make allias for all the filter pages manually with the Magento admin. But the site got a great catalloge, so this would be too tedious. I thought, that this extentions could help me, but not in my practice...
Yoast-landing-pages
Fishpigs_attribute_splash_page
If you have any thought about this problem, I would love to hear them.
Thank's for your attention!
What I did on my store is tag those links in the layered navigation with rel="noindex,nofollow" and I put the same into the robots meta tag in the target pages. I didn't want every variation of the pages to be indexed as I don't want duplicate content. Each variation of the category pages from that layered navigation ends up having the same title, meta description, and often many of the same products.

Categories