thetoolman123
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Moving website from sub directory to main directoryI think I have fixed it… it was my permalinks. Everything is now sorted I think 🙂
Forum: Installing WordPress
In reply to: Moving website from sub directory to main directoryOk I have now copied everything across and updated the site URL in /phase-2 to http://www.website.com however some pages are broken as they are using /index.php/page etc.
Can anyone help me with this part… why is it using index.php for pages
Thanks
Forum: Installing WordPress
In reply to: Moving website from sub directory to main directoryThanks for the reply.
I kind of have one. The original one is the old one which I have now moved into a “old” directory on FTP.
I am currently transferring all the files from /phase-2 into the root directory so this will become the main website again.
So, do I now change the URL in wp-admin from http://www.website.com/phase-2 to http://www.website.com :
https://ibb.co/xhBS5VPI’m guessing I will need to update some references in the database like you said after this has been done?
With regards to images, I have used relative paths so they should be ok in the transfer.
Forum: Plugins
In reply to: [WooCommerce] Best way to categorise downloadable and physical products…Thanks for the reply. Yes that sounds like the best one to me.
The theme I have installed used a dropdown navigation for the character:
https://ibb.co/CwLTcBwSo this would be a shortcut to all “santa”, “elf” etc products. What would be the best way to group these? Should I add them to a tag and then link to the tag or link to a search result containing the word “santa” etc?
Thanks!
Forum: Developing with WordPress
In reply to: Increasing characters/words from excerpt?I have used
<?php the_excerpt(); ?>which seems to do itForum: Developing with WordPress
In reply to: Displaying a short intro about the post?Thanks for the reply.
I now have this:
<?php if (!is_home() ) { the_excerpt(); } ?>Is this correct to check it’s not the homepage?
Forum: Developing with WordPress
In reply to: FTP plugin or a way to upload files without FTP?Thanks, yes I found that after I posted 🙂
It has exactly what I need 🙂
Forum: Everything else WordPress
In reply to: Where to find free bbpress forum themes?Thanks for the reply.
So when I install bbPress, it would come with some sort of basic theme to build upon? Also, do I need to set up a child theme similar to WP, or does it act like a plugin with tempaltes?
Forum: Themes and Templates
In reply to: [Zigcy Lite] Changing height of main banner/slider area?Thank you, I have changed the image sizes and it is working now 🙂
Forum: Themes and Templates
In reply to: [Zigcy Lite] Changing height of main banner/slider area?Hi,
Thank you for the reply. So I need to change the actual image size rather than the CSS?
Thanks, I will try that 🙂
Forum: Themes and Templates
In reply to: [Zigcy Lite] Changing height of main banner/slider area?Forum: Everything else WordPress
In reply to: bbPress vs. phpBB?Thanks for the reply.
The reason I asked about these two specifically was because they were the two I am choosing between.
Thank you for the pros and cons.
Which would you say is more secure?
Thanks
Forum: Developing with WordPress
In reply to: Enqueuing another stylesheetI see, thanks for replying.
Do you know what the parameter is that I need to add?
Thanks
Forum: Developing with WordPress
In reply to: Enqueuing another stylesheetOk I worked it out… this is what I needed:
add_action( 'wp_enqueue_scripts', 'zigcy_lite_child_enqueue_styles' ); function zigcy_lite_child_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'px-icon-style', get_stylesheet_directory_uri() . '/css/styles.min.css' ); }Forum: Developing with WordPress
In reply to: Enqueuing another stylesheetHi
I already have the child’s CSS enqueued in the child directory with these lines:
>add_action( 'wp_enqueue_scripts', 'zigcy_lite_child_enqueue_styles' ); function zigcy_lite_child_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }I basically just want to add another CSS file to the page.
- This reply was modified 5 years, 9 months ago by Yui.
- This reply was modified 5 years, 9 months ago by Steven Stern (sterndata).