webtrackstudio
Forum Replies Created
-
@newance Please share your website link to inspect the issue
Forum: Fixing WordPress
In reply to: Published page not showing, but in menuIf you want to set as this page as current welcome page then you need follow below steps
1. Go to Administration > Settings > Reading panel.
2. In the drop down menu for Front Page select “effortless.”
Save changes.Forum: Fixing WordPress
In reply to: Parallax Header displays white box.Your Welcome ??
Forum: Fixing WordPress
In reply to: Weird unclickable link at top left of site.Please follow these instructions………..
1.checkout your header file of your site in which this code was written.and check for syntax errors.It means programmer has written this html code in your php code without using proper syntax.<?php $pageId="get page id as you are doing right now"; echo '<a href="//awesomelysquishyart.com/?page_id='.$pageId.'/">← Return To Shop</a>'; //or for test use this as it is..... echo '<a href="//awesomelysquishyart.com/?page_id=1649/">← Return To Shop</a>'; ?>
2. check your plugins one by one by deactivate and activate one by one.
- This reply was modified 7 years, 2 months ago by webtrackstudio.
Forum: Fixing WordPress
In reply to: Posts have malware linksHey there,
If you have database access please download .sql file locally and edit, perform find and replace method. once you finished with that, please again download a fresh copy of database and save some where as backup. After that create new database and import .sql file. once done in wp-config setting change database name. Once done please follow the recommended security measures. hope this helps
Forum: Fixing WordPress
In reply to: Parallax Header displays white box.This is a quick fix solution. It will get things done:
Navigate to your wp-admin > Appearance > Customize > Additional CSS and insert the following code:
td.parallax-header {
background: transparent !important;
}Forum: Fixing WordPress
In reply to: How To Edit My Main/Home PagePlease try any one option:
1. Login to wordpress and look appearance -> customize -> static front page and choose any the front page/home page and after go to pages menu and edit the home page.
2. After Login look for Setting -> Reading -> static page and choose any the front page/home page and after go to pages menu and edit the home page.
Forum: Fixing WordPress
In reply to: Image Thumbnails Not Showing Up On Pages With Post Listsput this code in code file,this code help for list the all post featured image
<?php
global $post;
$args = array( ‘posts_per_page’ => -1 );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) :
setup_postdata( $post ); ?>
<?php the_post_thumbnail(”); ?>
“><?php the_title(); ?>
<?php the_content(); ?>
<?php endforeach;
wp_reset_postdata(); ?>Forum: Fixing WordPress
In reply to: Popup Makeryou can send your pdf files by using autoresponder feature of contact forms………
set upt mail(2) for autoresponder feature of cf7use this link and follow given instructions search for “mail(2)” in mail tab of cf7 and complete the setup to send pdf files with your mail……….
Forum: Fixing WordPress
In reply to: I can’t upload media files into my new post.I really appreciate if you can just add your comments about solution, it will help others
Forum: Fixing WordPress
In reply to: I can’t upload media files into my new post.So it means your file permission is good. Now go to root level again look for user.ini and if you did not find then create new one and add above code. Please make sure after each change you keep checking if the issue is fixed or not.
Forum: Fixing WordPress
In reply to: I can’t upload media files into my new post.For 1,2 and 4 you need to access files using FTP or Cpanel file manager. there you will see folder and files like this
wp-content
wp-admin
wp-include
.htaccess
user.ini
wp-config.phpupload folder should be inside wp-content, so go to that and there should be some file permission option either infront of that or on right click.
Forum: Fixing WordPress
In reply to: I can’t upload media files into my new post.Hi,
There could be multiple reasons behind it, so please try below options
1. Please edit or create user.ini at root level and paste below code
memory_limit = 2048M
max_execution_time = 1600
max_input_time = 160
post_max_size = 120M
max_input_vars = 2000
file_uploads = 4
max_file_uploads = 20
upload_max_filesize = 750M2. If still problem does not fix , then edit wp-config.php file and add below code
define( ‘WP_MEMORY_LIMIT’, ‘2048M’ );3. Sometime this happen due to image size to so please try to compress, you can try tinypng.com to compress images
4. If still you get the issue please check upload folder permission this should be 0755.
Please add your comment if any fix works for you.