RVWebStudio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Want to hide this contentYou can upload it here
Forum: Themes and Templates
In reply to: How do I post this code into a page and it work right?function fb_form_function() { $form = '<!-- your form code here -->'; return $form; } add_shortcode('fbform','fb_form_function');Now in your page editor add [fbform]
And it will work.
Forum: Themes and Templates
In reply to: How do I post this code into a page and it work right?Create a function that generates this form and register it as a shortcode in functions.php file.
Forum: Fixing WordPress
In reply to: Can't restore dbase – new site won't overwrite current tablesIf you have imported the old database successfully. It should work.
May be your old wp site was using a different table prefix.
“wp_” is default one.if it has a different prefix, you have to:
Edit wp-config.php file and change the table prefix to the one matching your old database tables.
Forum: Fixing WordPress
In reply to: Website displays character when logout of wordpressswitch back to default theme and check if it works (i think i will).
Forum: Fixing WordPress
In reply to: Website displays character when logout of wordpressand which theme you are using??? nulled one?
Forum: Everything else WordPress
In reply to: can an Author post a blog and my author info show?You need to make changes to SINGLE.PHP
if you are using TwentySixteen the code is inside “content-single.php” file.
Forum: Localhost Installs
In reply to: Template is formatted differently on different machinesPlease confirm if the site is live. Because i am unable to access it.
Error: ERR_CONNECTION_TIMED_OUT
Forum: Fixing WordPress
In reply to: Delete old theme and start over fresh…A theme is how your website looks and behaves.
Web Pages are saved in Database. Whatever theme you use. They will be displayed.
If you want to start fresh and delete all the previous data. You have to delete all the tables in the MySQL database and setup WordPress again.
Forum: Fixing WordPress
In reply to: Requiring login every now and thenMay be your IP changes.
Try select the “Remember Me” checkbox in login screen.
Forum: Fixing WordPress
In reply to: pages created after index.php/ instead of after the domain namechange the permalink structure for your website.
Dashboard >> Settings >> Permalink
Select the “Custom Structure” and add
/%postname%/
save the changes and your done!
Forum: Fixing WordPress
In reply to: pluggable.phpThere is a single quote missing in
return 'NAME';Other than that code is working fine for me.
Forum: Fixing WordPress
In reply to: pluggable.phpOk …. i am on mobile so can not debug right now. Please remove the code you added, so website works correctly. I’ll check again and update soon.
Forum: Fixing WordPress
In reply to: pluggable.phpAdd fhe following in functions.php file.
// changing from name
function rv_mail_from_name($name) {
return ‘NAME;
}
// changing email
function rv_mail_from($content_type) {
return ‘[email protected]’;
}add_filter(‘wp_mail_from’,’rv_mail_from’);
add_filter(‘wp_mail_from_name’,’rv_mail_from_name’);Edit: And ofcourse change the NAME and [email protected] to whatever you like.
Maybe your desktop browser loading using cached copy.
But Please mention your website URL first.