tim.vodien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom contact forms not sending notiforcation emailTry verifying if:
Your outgoing email server works try sending an email message using your WordPress administrative email address using a usual email client.
Make sure that your email server does not have any other restrictions and security settings, like those added by Google Apps.
Make sure that the contact form’s Primary Notification recipient field is set and the Recipient’s email address found in the profile is correct. If the Recipient field is empty, then in order to fill it in just begin typing the Recipient’s name, then choose a recipient in the drop down list.
Forum: Fixing WordPress
In reply to: Custom post 404 after migrationThis usually happens if your .htaccess file got deleted or something went wrong with the rewrite rules. Have you check if you still have your .htaccess file? If there isn’t then you can create one.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressAlso you can try to fix this through your dashboard permalink settings – Settings > Permalinks.
Forum: Fixing WordPress
In reply to: Can't Upload ImagesWhen did this occur? Did you update your WordPress version? Are you getting any error message?
Try checking this site for fix.
Forum: Fixing WordPress
In reply to: Hide Read More button from sliderHow about adding this to your Appearance > Editor > style.css:
.slide-content a.more-link { display: none; }
This should remove the read more button.
Hope this helps
Forum: Fixing WordPress
In reply to: No Option to CommentHave you tried to check your Settings > Discussions and enabled the Allow people to post comments on new articles ??
You can also add this code <?php comments_template(); ?> to your single.php.
Hope this helps.
Forum: Fixing WordPress
In reply to: I can't access my site to fix bugI think it is because of you Contact Form plugin. Have you already disabled it to check if your site will be up again?
You could also delete the files located in /home/sites/heteml/users/h/u/b/hubasia/web/hubasia.co.th/wp-content/plugins/contact-form-7/ manually through your FTP.
Once these are removed you should be able to load your site and access the Dashboard to re-install the plugin.
Hope this helps
Forum: Fixing WordPress
In reply to: How to embed videoTry using a shortcode
[embed width="123" height="456"]http://www.youtube.com/watch?v=dQw4w9WgXcQ[/embed]Check this codex
Forum: Fixing WordPress
In reply to: Redirection to home pageHave you made any recent changes in your website lately?
I would suggest going in to your Admin panel and resetting your permalinks as that usually fixes it.
Forum: Fixing WordPress
In reply to: 404 error when change permalinkYou can simple create your .htaccess with this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: load one page in anotherThe post would not show the exact format due to the front page’s format.
You can see that in page_id=10 the content is only under div id=”content” > div class= “container” however in the front page the post is under div id = “content” > class= “containe”r > div class = “vc-row wpb-row vc_row-fluid” > div class = “wpb_column vc_column_container vc_col-sm-12” > div class = “vc_column-inner “
I think it is not possible to change the format of the front page though.
Forum: Fixing WordPress
In reply to: Logo in MobileWorking fine in my mobile, clicked the pages at the top respectively and it does not go back to the home page. Have you cleared the cache and cookies in your mobile browser?
I’m using Chrome browser – Android Lollipop.
Forum: Fixing WordPress
In reply to: basic authentication not workingWhat error message are you getting?
There is a related post about this and it is saying that it may be that you might used the wrong plugin.
Hope this helps.
Forum: Fixing WordPress
In reply to: Time Zone DiscrepanciesDo you mind posting your php.ini?
It should be changed using:
date.timezone=”America/Vancouver”
Forum: Fixing WordPress
In reply to: WordPress route in subdomainI think there is a confusion.
domain.com/blog will result to 404 error since the /blog files is under the public_html folder and not in public_html/main. You should be accessing the subdomain blog.domain.com.
Forum: Fixing WordPress
In reply to: redirecting me to another loginYou can directly go to http://www.trois-echos.com/wp-login.php and it will go to your wordpress admin login page.
Check this information to change the URL directly in the databasehttps://codex.wordpress.org/Changing_The_Site_URL#Changing_the_URL_directly_in_the_database
Hope this helps.