danclp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New Post in Post Type Customized doesn’t load scriptsThere is not enough information to support on this. Can feed us more? Website URL, how do you code?
Forum: Fixing WordPress
In reply to: WordPress blog post appearing to be centralizedIt’s the <center> tag that made the content align center.
This is what I would advice.Replace <center> with <div>, or
Add a css to this class “post-content”, text-align:left;This should solve your problem.
Forum: Fixing WordPress
In reply to: How to secure your site from attacks?My way:
– Never use wp_ for your table_prefix in the wp-config file
– Never us Admin as user name
– Use a stronger password
– Use 2-factor authentication
– Rename your login URLMaybe you can refer to this site as well: https://www.codeinwp.com/blog/secure-your-wordpress-website/
very useful.
Forum: Fixing WordPress
In reply to: Post template with predefined contentDid you try WP_Query?
Forum: Fixing WordPress
In reply to: Home, Front Page – Section Duplication on Twenty Seventeen ver 1.3Hi,
Looking at your staging site, I believe you are trying to do a single page website. And now, when people click on the other section, like about, Advisory board, etc, the page didn’t scroll down to the section you want. Is that what you mean?
This is what I do in my previous project.
You don’t use page to create Navigation, use custom link with #.
For example, you create an ID to the about section, Advisory board section, Upcoming event section, so on and so fort. And the custom link should target to all these ID respectively.As for the contents for all the different pages, I used WP_Query to call the data to all the respective section.
Do let me know if this helps.
Danc