I can't change the template of "related post" module of my blog layout to make it corporate - blogs

I am working on wordpress via avadastudio for all my template !
current situation
goal situation for inside each page of article at the bottom
i tried to adjust the settings inside Layout -> Blog -> footer but it just about animation and not template

Related

How to remove link from header navigation within the Astra theme for wordpress?

Made a wordpress website with the Astra theme and I want to remove a link from the header navigation because I only want my logo to be the link to the homepage. I haven't found any working solutions yet.
I have already looked through the backend of the theme and wordpress but I can't seem to find it anywhere. I also went through the code but that didn't get me anywhere either.
If you could take a screenshot of the specific link element that you are trying to remove that might help me understand better your situation to I can better assist you. That said, here are a few observations that might help you achieve what you are looking for.
From my end, when I install the Astra theme locally I only see two links in the navbar (header): 1) The Brand logo link (the link to the website's home page) on the left and 2) The "Sample Page" link to the only page (the default sample page) I have in my WordPress development website.
If what you are trying to do is remove page links in the navbar (header), then it looks like to me that the free version of this theme has relatively limited customization options and by default the navbar shows your published pages as navbar links (links on header area).
So as is, I think you have two quick options:
1) Disable the menu altogether, which will leave your navbar (header) with the Brand Logo link only. You can do that in the following way:
Go to:
Appearance -> Customize -> Layout -> Header -> Primary Header
Then..
Check off "Disable Menu" checkbox option. Then press the "Publish" button at the top to save this change.
From what I can see, this basically removes the navbar links on the right and leaves the Brand logo link to the website's homepage on the left only. This sounds like what you were trying to do although I am not entirely sure that is the best solution.
2) You can also simply be mindful of the way the free version of the them works with respect to the navbar (header), which, as I mentioned above, seems to display your published pages as navbar links. With that in mind, you should be able to influence what gets displayed as your navbar (header) links by adding/changing/removing your PAGES through the "Pages" from your WordPress Admin Dashboard menu. For example, in my case, if I wanted to remove the "Sample Page" navbar (header) link, all I need to do is remove or set the page visibility to "Private". You can do that like this:
Pages -> *Select Specific Page that comes up as navbar (header) link, in my case "Sample Page".
Then..
Press "Move to Trash" button. OR simply click "Public" next to where it says "Visibility" and then select "Private" from the drop-down. Make sure you save the changes to the page as per the usual page editing process.
I hope this helps you with your quest. And if this does not quite help you with what you were trying to achieve, please do add a screenshot so I can get a better idea of what you are looking to accomplish.
Cheers!
Arty

How exactly do I create a new, separate page to my website in a Shopify theme?

I'm working on an e-commerce website that I'm making with Shopify and I've been using the Timber framework and building onto it and modifying it heavily.
You can create your page in the Shopify admin. The content box can contain HTML or JavaScript; just tap on the <> button to see the code.
The page will be rendered with the page.liquid template of your theme. If you want the FAQ page to have a different look from your other pages you can create an alternate page template.

Regarding WordPress custom homepage

This is more of a process question than coding. I have a custom homepage with logo, menu, footer similar to other pages. But there are few other contents which are different in the homepage, as usual, i.e, a title, a description div, a social links div and a few more, which are only in the home page.
Now the question is, since I want the admin to change this dynamically, how should I easily implement this for the site owner. Should I make a top-level menu named Homepage in WordPress dashboard and add all these meta boxes (with title, description, social fields) on that admin page so that he can fill this in from the back-end or make a custom post-type with the mentioned custom fields? Or should I add a menu under appearance with the relevant fields to be filled.
I am confused about the standard way. I am new to WordPress and just learning. This clarification will help me get a pre-idea. I completed the HTML and now converting the site to WordPress. Just give me a general overview please, nothing detail, I'll get the rest done. I would like to know the difference between the options mentioned above in a nut-shell (what is for what actually) and what is the standard way to add the custom home page fields for the site admin to input page contents easily.
Thanks in advance.
You would need to create a static front page.
https://codex.wordpress.org/Creating_a_Static_Front_Page
Basically you can create a standard page and then from wordpress customizer make that page a front page. Client will edit it from the back end just as any other standard page.

Magento Insert Event Manager Slider Block in CMS page

I have Magento version 1.9.0.1. And am purchased a template. I purchased the Event Manager extension from FME. It is working for the most part, but one of the features is a slider block that you can put on any CMS page that lists upcoming events.
Slider Block for CMS Page
{{block type="events/spBlock" name="events.block" template="events/spblock.phtml"}}
Copy this code and paste in desired CMS Page (s).
I pasted this in the content section of my home page at the bottom of the content section and nothing shows up.
The extension also says:
Slider Block for Templates
echo Mage::app()->getLayout() ->createBlock('events/spBlock') ->setTemplate('events/spblock.phtml') ->toHtml();
Place this code in desired Template(s) in php tags.
I do not know what they mean by this. Where do I put this? Where in the folder structure? Which Template? What precisely does it mean by PHP tags?

Multiple themes or template on Wordpress

I have 7 designs for 7 pages. All the design are different from each other and really has no similarity with each other. Is it possible to apply all those design on a same site as I an familiar with three designs only which are Home(For Home Page) and Page(For All inside Pages) and another is Post same as Page. But I have seven HTML design for seven kind of pages beside home and post. How can I apply that. If not then please give me any suggestion how to do it. I am very new at Wordpress.
You need to make 7 wordpress templates and to apply each template to the page you want.
To make a wordpress template you need to add this to each template page:
<?php
/*
Template Name: Your template name
*/
?>
Then you can select which page which template to use when you edit the page.
In Wordpress you can apply a different template to each of the pages you create. You can choose the template, in the page editing section, by opening the drop-down menu on the right side of the screen which is called "Page Attributes".