VEFA AKIN AKTANSEL
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I detect a list of pages on a site without an account?It is interesting that:
1) All 5 pages have a body class of error404 which means that that page is a fallback for non existing pages.
2) All 5 pages are 404 pages but all of them have a different header background image.This means that they have created 5 different 404 page styles and assigned all of them to menu pages one by one.
I am sure this has been done purposefully and again i am sure there are no other existing pages that you can reach with any tool free or paid.
If i understand your problem correctly, this can help:
Every page in a wordpress site has a unique id and body element is associated with that unique class. like:
<body class=”home page-template-default page page-id-2316 template-slider “>
in this case this pages id is 2316 and you can select any element specific to that page with adding body class in front of each element.For example if you want to customize your contact form on your contact page, you can add the css rules to the same stylesheet including body class on it. Like:
body.page-id-2316 form {
display: block;
}body.page-id-2316 form input {
background-color: red;
color: white;
}Hope this helps!
Oh ok, now i understand better.
Maybe this helps:
https://ww.wp.xz.cn/plugins/list-categories/Forum: Fixing WordPress
In reply to: First paragraphs not appearing on category archiveI think this article will help you solve your problem in an easy way:
https://www.wpbeginner.com/plugins/how-to-customize-wordpress-excerpts-no-coding-required/
Forum: Networking WordPress
In reply to: WP MultisiteHello,
The main url is the domain of the website which has nothing to do with translation.
I think you want last three urls to be like:
https://fullstorymedia.firstvisiondev.en/marketing/
https://fullstorymedia.firstvisiondev.en/journalism/
https://fullstorymedia.firstvisiondev.en/photo-video/resplacing .se with .en or something similar. So for this you need to have the domain:
fullstorymedia.firstvisiondev.en or firstvisiondev.en and setup wordpress multisite with subdomains.I hope this helps.
This is the plugin i thinl:
https://en-gb.ww.wp.xz.cn/plugins/recent-posts-widget-with-thumbnails/
You can set categories, number of posts and other settings and can display them on your homepage via shortcode.