SPViradiya
Forum Replies Created
-
Forum: Hacks
In reply to: Adding Shortcode to PHP File in WordPressYour question is not properly explained. Please give an example if possible sir.
Forum: Themes and Templates
In reply to: Twenty-Sixteen theme – can I trim the wasted space?Go to http://nick-stevens.com/wp-content/themes/twentysixteen/index.php file and find .site and add
.site { background-image: url('http://nick-stevens.com/wp-content/uploads/2015/12/starback0116.jpg'); background-repeat: repeat; background-position: top left; background-attachment: scroll; } .site-header{padding-top:0px}Forum: Localhost Installs
In reply to: Migration issues from localhost to live serverPlease replace your .htaccess with the below one :
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
# END WordPressForum: Localhost Installs
In reply to: Migration issues from localhost to live serverHi snarfbucket,
Can you please check the .htaccess file.
As it seems its missing of .htaccess file or the code in the .htaccess file.
If you have .htaccess file, replace the code with below one or create a new 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 WordPressLet me know if still the issue is there. 🙂
Regards,
SPViradiya.Forum: Plugins
In reply to: [Simple Subscribe] Add input valueHi karinanana,
I am not able to make the submit button and the textbox of email in same line. As you wrote here you had did it. Can I know how you did it and what had you changed in the Forms.php file?
Thanks in advance.
Regards,
SPViradiya.