RossMitchell
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Change font size of product add-on title in woocommerceYou will see on my product page that I added 3 product add-ons with the following titles: “Stain Color”, “Paint Colors”, and “Add-on Styling Options”.
Sorry I cannot see these titles.
Rather than trying css code you find on the internet, I suggest that you use your browser explorer to see the css being used, and add it to your new titles using the customizer.
Get back to us with a link that shows the new titles.Forum: Everything else WordPress
In reply to: Transferring blog from one host cpanel to anotherYou are correct, the posts are stored in a database, as are other aspects of your website content.
The answer is to backup the database, and then restore it in the new hosting account.
You do not mention if you will be changing the website’s domain.
There is a plugin called DUPLICATOR that helps with this.
Suggest you ask your hosting support to assist with this.
This article also covers various issues:Forum: Fixing WordPress
In reply to: Line Space within bullet pointsLearn to use your browser inspector to see how your site is using html and css. Try adding this to your customizer > Additional CSS:
.elementor-widget-container ul li { line-height: 1.0em; }I did a google on:
phpmailer_init action hook example
(it was google that suggested adding example)
Among the links is:
https://developer.wordpress.org/reference/hooks/phpmailer_init/
With an example:function my_phpmailer_example( $phpmailer ) { $phpmailer->isSMTP(); $phpmailer->Host = 'smtp.example.com'; $phpmailer->SMTPAuth = true; // Ask it to use authenticate using the Username and Password properties $phpmailer->Port = 25; $phpmailer->Username = 'yourusername'; $phpmailer->Password = 'yourpassword'; // Additional settings… //$phpmailer->SMTPSecure = 'tls'; // Choose 'ssl' for SMTPS on port 465, or 'tls' for SMTP+STARTTLS on port 25 or 587 //$phpmailer->From = "you@yourdomail.com"; //$phpmailer->FromName = "Your Name"; } add_action( 'phpmailer_init', 'my_phpmailer_example' );Forum: Fixing WordPress
In reply to: locked outYou need to login to your godaddy hosting management.
– Take a backup of your website as it is.
– Examine the contents of your wp-config.php file. Compare it with your old backup.
– You may need to consult with godaddy support.
– Can you restore from your working site ?Forum: Localhost Installs
In reply to: can connect with root, not user_actSo you are able to develop your website on localhost as long as you use the root login with no password. Then just do that.
Yes there is a curious problem as to what is wrong with your mcsga_user login, not sure it is worth sorting that out. Have you asked in the XAMPP support forum ?Myself I use the gui of phpmyadmin to setup my localhost databases, suggest that you try that.
Forum: Developing with WordPress
In reply to: Best markup for WordPress?Suggest that you download and review the available themes and let us know what you find.
The point of having your text and page structures subject to filters and hooks is well made.Forum: Developing with WordPress
In reply to: Update Text in Bizberg Theme Homepage HeroSomething like:
.banner .slider .swiper-content p { color: black; }Suggest disabling the slider animation temporarily as the animation disrupts watching the css in your browser inspector.
Forum: Fixing WordPress
In reply to: Domain issueThis is not the correct forum.
Domain names are purchased and renewed from a domain name registrar. You established a relationship with your registrar when you first obtained your domain. They will have been sending you renewal notices to you using the email address that you gave them at that time. Unfortunately there are various scams relating to fraudulent renewal notices, it is up to you to know which ones are from your registrar and hence are real. Your hosting is a different relationship, it may or may not be with the same entity as your registrar.
Suggest that you go through your email and account records.Forum: Localhost Installs
In reply to: Creating Multiple Local WebsitesFirstly restore your original httpd.conf file. There are no changes necessary for your original website.
You need to load a new set of WordPress files for the new website, it is best tyo keep them out of the “Program Files” space, the var directory will do. Make a sub directory for site2, also create a logs directory.
Add a new virtualhost block to your restored httpd.conf file like this:
(Note that it is on port 80 of 127.0.0.1)#A new VirtualHost <VirtualHost *:80> <Directory "C:/var/site2"> Options FollowSymLinks Indexes AllowOverride All Order deny,allow allow from All </Directory> ServerName mynewhostname ServerAlias www.mynewhostname DocumentRoot "C:/var/site2" ErrorLog "C:/var/site2/logs/error.log" CustomLog "C:/var/site2/logs/access.log" combined </VirtualHost>Now add these two lines to your hosts file:
www.mynewhostname 127.0.0.1 mynewhostname 127.0.0.1Then if you want to access your site2 from elsewhere on your LAN you do this:
– find the IP address that your server PC uses, something like 192.168.0.27
whatever it is say it is a.b.c.d
– On every computer that want to access your site2 that is on the LAN, add these lines to its hosts file:mynewhostname a.b.c.d www.mynewhostname a.b.c.dOf course this requires that the IP address of the server never changes, there are ways to do this.
Forum: Localhost Installs
In reply to: Creating Multiple Local WebsitesAn after thought:
Leave your first website as localhost = 127.0.0.1
just use the virtual host method to setup the extra ones.
I often use exactly the same domain name as will be use when the site is launched, just commenting out the lines in the hosts file with a hash = “#” switches the browser from accessing the localhost or using the webs domain name system.Forum: Localhost Installs
In reply to: Creating Multiple Local WebsitesI do this by configuring my webserver using VirtUalHost technique, details here:
https://httpd.apache.org/docs/current/vhosts/
Then I put the domain names into my hosts file, details here:
https://en.wikipedia.org/wiki/Hosts_(file)Forum: Fixing WordPress
In reply to: Can’t open my websiteAnother approach is:
– revert to an earlier PHP version using your website hosting control panel, or consult your website hosting support to do this.
– your website will be working again.
– install the plugin: PHP Compatibility Checker
https://wordpress.org/plugins/php-compatibility-checker/
– get it to identify the plugin etc with PHP issues
– contact the relevant support forum for the above, install their update
– update your PHPForum: Fixing WordPress
In reply to: Code appearing at top of pagesSorry I don’t see any code.
Can you copy/paste it ? Or get a screenshot.
Suggest that you try different browsers and different computers.Forum: Developing with WordPress
In reply to: Woocommerce min qty to show on front-endSuggest also asking in the various woocommerce support forums.