sumithsuku11
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sample pageCould you please more specific ? Are you mentioned about the wordpress page ? Could you please paste the page link.
Forum: Fixing WordPress
In reply to: customization page not loadingHi ,
You can find the “wp-config.php” file root of the wordpress intallation directory.
Please do a backup both files and database before do anything ??Could you paste here your site link ?
- This reply was modified 7 years, 3 months ago by sumithsuku11.
- This reply was modified 7 years, 3 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: customization page not loadingCould you please tell the Theme name ?
Also please try to enable wp debug mode in the wp-config.php file
define( 'WP_DEBUG_LOG', true )
and check again ?Forum: Fixing WordPress
In reply to: Internal Server ErrorHi,
1) A piece of code to be added to the Right Footer Widget
Reply: You can add text widget from admin side. Please go through Appearance >> Widgets .
Here you can see the widget area “Right sidebar”. You can can see the some of the widgets listed in the left of the screen you can drag and drop the widget to the right side bar widget area.
2) A Logo Image to be inserted into the Header.
>>Its all depending on the theme. If you have third party theme please go through the theme settings page in admin side.
Other wise you can add the logo from the theme Customizer.
Appearance >> CustomizePlease let me know if you need more help on the same.
Forum: Fixing WordPress
In reply to: How to create a list of tips?Ok you can achieve it by using id.
Please add the id attributes to each heading tags for example<h2 id="tip1"><strong>TIP 1:</strong> Boost Your Knowledge Before Baby Arrives</h2> <h2 id="tip2"><strong>TIP 2: </strong>Pick Up Only Must-Have Supplies</h2>
Pleas do same for the all tips heading tags.
After please create a list in th bottom and use the is in the a tag href attribute .
For example:
<a href="#tip1">TIP 1: Boost Your Knowledge Before Baby Arrives</a><br/> <a href="#tip2">TIP 2: Pick Up Only Must-Have Supplies</a>
- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: How to create a list of tips?Hi ,
Could you please more specific ? Do you want the tips`s main title listed in the bottom and when clicking any of them its need to point the screen to particular tip details right ?
Forum: Fixing WordPress
In reply to: customizing page templateHi ,
Sounds little confusing ” i have copied all theme pages or sections ” . Do you want a page template for a particular page right.
You need to assign the custom page template to any of the page from wordpress admin side. Also page template have a format.
Please go through following reference
https://developer.www.ads-software.com/themes/template-files-section/page-template-files/Forum: Fixing WordPress
In reply to: Issues logging into the WP admin dashboardHI
Ok could you please try the same via phpmyadmin.
If you not able to access the admin side. Please do vial phpmyadmin
https://www.inmotionhosting.com/support/edu/wordpress/change-theme-in-dbTake a backup of both and database before do anything.
Forum: Fixing WordPress
In reply to: Issues logging into the WP admin dashboardHi ,
Seems the front end also blank. You said that all of the possible troubleshooting steps done already are you sure that you have did accurately ?
Could you please enable PHP short tags? You can enable it from the php.ini file.
Forum: Fixing WordPress
In reply to: Blog hacked, everything’s gone, need to start newHi,
You said that have a backup from Sep 2016 . is it database right ? What is the issue they facing while restoration. Also did you check that the database is safe ? Please check it via cpanel/phpmyadmin.
- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: Issues logging into the WP admin dashboardHi ,
Have you facing any problem while try to access admin via https://nbwgaragedoors.ca/wp-admin ?
Also can u add a line of code to wp-config file
define('WP_DEBUG', true);
This code you must have to insert BEFORE /* That’s all, stop editing! Happy blogging. */ in the wp-config.php file.and check again ?
- This reply was modified 7 years, 5 months ago by sumithsuku11.
- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: Site cannot be accessedHi,
Please double check that you have revert back all changes you have made in the theme.
Could you please rename the plugin folder and check again ?
If it not working then please change the active theme to a default one.If you not able to access the admin side. Please do vial phpmyadmin
https://www.inmotionhosting.com/support/edu/wordpress/change-theme-in-dbIf its not helps try to add
define( 'WP_DEBUG', true );
code the wp-config.php then it will display the errors if any .(Please take a back of both files and database before do anything)
Regards
Sumith- This reply was modified 7 years, 5 months ago by sumithsuku11.
- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: Impossible to login after URL change in WP control PanelHey actually you want to replace all old urls(https://67.199.114.44/wp/) references into new dmain(https://www.sjsthailand.com) right ?
If you move the site to another domain or making site to live you need to change both home and site urls to new domain as well as you need to change all references to new url(including image paths,attachment paths etc..).
If you willing to run the query via phpmyadmin from cpanel. you can run the below queries.
UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl'); UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl'); UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');
(please make a backup before do anything).
Regards
Sumith- This reply was modified 7 years, 5 months ago by stephencottontail.
- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: Cannot edit imagesHi ,
Goto Admin >> Appearance >> themes
Here you can see the themes try to activate any default theme . After the check the issue.
(Please take a back before do anyting)
Regards
Sumith- This reply was modified 7 years, 5 months ago by sumithsuku11.
Forum: Fixing WordPress
In reply to: Impossible to login after URL change in WP control PanelHi
You can change both urls manually in the wp-config.php file.
define('WP_HOME','https://example.com'); define('WP_SITEURL','https://example.com');
(Please use your domain name instead https://example.com)
Please check it and let me know !
- This reply was modified 7 years, 5 months ago by sumithsuku11.