Title: Ramesh (thecodeisclear)'s Replies - page 3 | WordPress.org

---

# Ramesh (thecodeisclear)

  [  ](https://wordpress.org/support/users/thecodeisclear/)

 *   [Profile](https://wordpress.org/support/users/thecodeisclear/)
 *   [Topics Started](https://wordpress.org/support/users/thecodeisclear/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thecodeisclear/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thecodeisclear/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thecodeisclear/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thecodeisclear/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thecodeisclear/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 237 total)

[←](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/thecodeisclear/replies/?output_format=md)
[2](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/thecodeisclear/replies/page/4/?output_format=md)…
[14](https://wordpress.org/support/users/thecodeisclear/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thecodeisclear/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/thecodeisclear/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/thecodeisclear/replies/page/4/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to find PHP code in custom script](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/#post-6018741)
 * Hi,
 * Sorry, I think I was not clear where to make the change. You need to make the
   change in the same file which you pasted in [reply#4](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script?replies=15#post-6825100)
 * What I have suggested is to modify the theme function that creates the post thumbnail
   to return nothing when it is called from the home page. Please don’t make any
   changes to any other files where the function is being called from (For e.g. `
   <?php echo mamontov_post_thumb($post->ID); ?>`)
 * Cheers,
    Ramesh
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site Title appearing on front page](https://wordpress.org/support/topic/site-title-appearing-on-front-page/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/site-title-appearing-on-front-page/#post-6020405)
 * Hi,
 * The text appears just on the home page and nowhere else, do you have a custom
   home page? In your theme folder do you have a file called home.php? I suspect
   this could be due to a text wrongly pasted in a file.
 * If you have a text editor like notepad++, find for text “Adoptiveparents.ca” 
   in the entire theme folder. I think you should find the issue.
 * Regards,
    Ramesh
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to find PHP code in custom script](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/#post-6018656)
 * I am not against helping fix issues/make changes in commercial products, but 
   without access to the code, I might end up barking up the wrong tree (just like
   I did here).
 * However, the function you identified `mamontov_post_thumb` is right on spot. 
   Here is a quick fix: Add these line at the start of the function (right after
   the line `function mamontov_post_thumb...`)
 *     ```
       if (is_home() || is_front_page()) {
       	return null;
       }
       ```
   
 * Basically, at the start of the function, you check if it is the home or front
   page and you return an empty value.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to publish posts onto a homepage and a different page?](https://wordpress.org/support/topic/how-to-publish-posts-onto-a-homepage-and-a-different-page/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-publish-posts-onto-a-homepage-and-a-different-page/#post-6018494)
 * I think using `tags` is the best way for you to go ahead. Can you post a link
   to your site (or) let me know if you have a separate home page (as per your theme)?
 * The way I think this can be done is to clone your home page (`home.php` – ideally)
   into a new file `tag.php` and modify the loop in a way to pick up only the particular
   tag (I believe this can be achieved by looking at `archive.php`)
 * _PS: A lot of this is just at the top of my mind. Haven’t really analyzed it 
   through and through._
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to find PHP code in custom script](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-find-php-code-in-custom-script/#post-6018492)
 * Since it is a commercial theme, I will not be able to tell you the exact code
   that needs to be modified, but I can hopefully give you the right hints
    - Open content.php and search for the function `get_the_post_thumbnail`
    - Add an if around it to check if it is the home page. Something like this `
      <?php if(!is_home() && !is_front_page()) get_the_post_thumbnail(); ?>`
 * Hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Lost access to Admin function, I became demoted to Editor](https://wordpress.org/support/topic/lost-access-to-admin-function-i-became-demoted-to-editor/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/lost-access-to-admin-function-i-became-demoted-to-editor/#post-6011037)
 * You will need to raise this at the wordpress.com support pages – [https://en.forums.wordpress.com/](https://en.forums.wordpress.com/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to change font to sans serif for testimonial slider?](https://wordpress.org/support/topic/how-to-change-font-to-sans-serif-for-testimonial-slider/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-change-font-to-sans-serif-for-testimonial-slider/#post-6009463)
 * Yes, that’s right.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to change font to sans serif for testimonial slider?](https://wordpress.org/support/topic/how-to-change-font-to-sans-serif-for-testimonial-slider/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-change-font-to-sans-serif-for-testimonial-slider/#post-6009358)
 * Hi,
 * The first font to be picked up is Cardo, which is a serif font ([http://www.google.com/fonts/specimen/Cardo](http://www.google.com/fonts/specimen/Cardo)).
   You will need to make more changes to get this to work
 * (1) From Google fonts, find a replacement sans serif font. E.g: [http://www.google.com/fonts/specimen/Roboto](http://www.google.com/fonts/specimen/Roboto)
   (
   2) Include this link `<link href='http://fonts.googleapis.com/css?family=Roboto'
   rel='stylesheet' type='text/css'>` just below `<link href='http://fonts.googleapis.
   com/css?family=Cardo' rel='stylesheet' type='text/css'>` (3) Update the style.
   css `.testimonial-item p {color: #ffffff; margin-bottom:5px; font-family: 'Roboto',
   sans-serif; font-size:1.3em;}`
 * PS: I see you are already using a child theme, hence I have not suggested to 
   create one.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [change in wp-admin/options-general.php](https://wordpress.org/support/topic/change-in-wp-adminoptions-generalphp/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/change-in-wp-adminoptions-generalphp/#post-6009349)
 * Hi,
    Do you have access to the WP database?
 * If yes, go to the table wp-options and change the rows `siteurl` and `home` to`
   http://www_hotelspa_nl.017.bho.nu/wordpress/`
 * More details from the [codex](https://codex.wordpress.org/Changing_The_Site_URL)(
   has some methods to update these options without using the Database)
 * Hope this works out.
    – Ramesh
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [None of the post dates are displaying](https://wordpress.org/support/topic/none-of-the-post-dates-are-displaying/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/none-of-the-post-dates-are-displaying/#post-6008772)
 * Hi,
 * Go to theme options and in the option “Blog Category”, choose the category where
   all your blog posts belong to. Save options and go back to your blog. You will
   see the date at the bottom of each blog post that belongs to the category you
   need.
 * Alternately, if you your blog posts are in multiple categories, you will need
   to make the following changes in the child theme `single.php` file
 * Find `in_category( $blog_ID )` and comment as follows
    `<?php //if( in_category(
   $blog_ID ) ) { ?>`
 * The corresponding end `}` should be commented as below
 *     ```
       </p>
       <hr class="dotted" />
       <?php //} This is the commented line. Above lines for reference?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Create a database that contains different records for registered users](https://wordpress.org/support/topic/create-a-database-that-contains-different-records-for-registered-users/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/create-a-database-that-contains-different-records-for-registered-users/#post-5995708)
 * Maybe a plugin such as [this](https://wordpress.org/plugins/bepro-listings/) 
   would help? It helps you setup different lists and users can pull up their lists.
 * Could you tell me more about what kind of user data you wish to store in the 
   database?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Email not get](https://wordpress.org/support/topic/email-not-get/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/email-not-get/#post-5995272)
 * Who is your webhost? Do you have access to the cPanel?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Email not get](https://wordpress.org/support/topic/email-not-get/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/email-not-get/#post-5995268)
 * Did you check your spam folder? You will also need to check your server settings
   for mails. Did you speak with your webhost about this?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Canvas theme not resizing on square monitors](https://wordpress.org/support/topic/canvas-theme-not-resizing-on-square-monitors/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/canvas-theme-not-resizing-on-square-monitors/#post-5995265)
 * Sorry, the theme you have mentioned is a paid theme and we do not have access
   to it. You will be able to get support from their [Woothemes Helpdesk](https://support.woothemes.com/hc/en-us)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Website not showing on Google](https://wordpress.org/support/topic/website-not-showing-on-google-1/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/website-not-showing-on-google-1/#post-5995262)
 * I agree that the issue is quite interesting. Did you create a Sitemap ([using a plugin](https://wordpress.org/plugins/google-sitemap-generator/)/
   manually) for Google and submit it via GWT? That should help Google Index your
   site properly.
 * Also have a look at robots.txt to see if there are explicit instructions for 
   Bots to keep away.

Viewing 15 replies - 31 through 45 (of 237 total)

[←](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/thecodeisclear/replies/?output_format=md)
[2](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/thecodeisclear/replies/page/4/?output_format=md)…
[14](https://wordpress.org/support/users/thecodeisclear/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thecodeisclear/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/thecodeisclear/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/thecodeisclear/replies/page/4/?output_format=md)