Title: Atharvan's Replies | WordPress.org

---

# Atharvan

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/atharvan/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/atharvan/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Add custom text in single post modified date meta](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/#post-15815394)
 * [@skalanter](https://wordpress.org/support/users/skalanter/) Any solution for
   this [https://wordpress.org/support/topic/display-the-last-updated-date-of-posts/](https://wordpress.org/support/topic/display-the-last-updated-date-of-posts/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Display the Last Updated Date of Posts](https://wordpress.org/support/topic/display-the-last-updated-date-of-posts/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/display-the-last-updated-date-of-posts/#post-15815387)
 * [@skalanter](https://wordpress.org/support/users/skalanter/) Any solution for
   this?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Published and Modified Date](https://wordpress.org/support/topic/published-and-modified-date/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/published-and-modified-date/#post-15807996)
 * [@skalanter](https://wordpress.org/support/users/skalanter/) i think these 2 
   questions are not same and i don’t want to hijack any other topic for different
   question. I got answer for my question already here [https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/)
   and closed as resolved.
 * Do you have any answer for my above question? And thanks for your suggestion.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Add custom text in single post modified date meta](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/#post-15802240)
 * Found. In Your wordpress root folder > wp-content > themes > oceanwp > partials
   > single > meta.php file
 * [OR]
 * copy that file to your child theme in same path and follow below
 * Replace below code
 *     ```
       <?php if ( 'mod-date' === $section ) { ?>
       			<li class="meta-mod-date"<?php oceanwp_schema_markup( 'modified_date' ); ?>><span class="screen-reader-text"><?php esc_html_e( 'Post last modified:', 'oceanwp' ); ?></span><?php oceanwp_icon( 'm_date' ); ?><?php echo esc_html( get_the_modified_date() ); ?></li>
       		<?php } ?>
       ```
   
 * with this code
 *     ```
       <?php if ( 'mod-date' === $section && true === $display_mod_date ) { ?>
       			<li class="meta-mod-date"<?php oceanwp_schema_markup( 'modified_date' ); ?>><span class="screen-reader-text"><?php esc_html_e( 'Post last modified:', 'oceanwp' ); ?></span><?php oceanwp_icon( 'm_date' ); ?><span><?php esc_html_e( 'Updated ', 'oceanwp' ); ?></span><?php echo esc_html( get_the_modified_date() ); ?></li>
       		<?php } ?>
       ```
   
    -  This reply was modified 4 years, 1 month ago by [Atharvan](https://wordpress.org/support/users/atharvan/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Add custom text in single post modified date meta](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/#post-15802012)
 * So i need to change WP root > wp-content > themes > oceanwp > partials> single
   > meta.php file to add the custom text in front of modified date.
 * Also found meta-2.php, meta-3.php and meta-4.php inside WP root > wp-content 
   > themes > oceanwp > partials> single > metas folder. what are these?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Add custom text in single post modified date meta](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/add-custom-text-in-single-post-modified-date-meta/#post-15797166)
 * Thanks but i am not talking about date format.
 * How to add “Last updated:” or “any other text” before the post modified date?
 * Example:
 * Posted July 4, 2022
    Published July 4, 2022 Last updated: July 4, 2022 Updated
   July 4, 2022
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Alter Recent Posts Homepage Title Heading](https://wordpress.org/support/topic/alter-recent-posts-homepage-title-heading/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/alter-recent-posts-homepage-title-heading/#post-15788985)
 * line-height solved the problem.
 *     ```
       .home.blog .page-header-title {
           font-size: 0;
       }
       .home.blog .page-header-title:before {
           content: "My Custom Title";
           font-size: 24px;
           line-height: 1.0;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Rectangle box outside the link after clicking any link](https://wordpress.org/support/topic/rectangle-box-outside-the-link-after-clicking-any-link/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/rectangle-box-outside-the-link-after-clicking-any-link/#post-15776897)
 * Add that code to Appearance > Customize > Additional CSS
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Rectangle box outside the link after clicking any link](https://wordpress.org/support/topic/rectangle-box-outside-the-link-after-clicking-any-link/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/rectangle-box-outside-the-link-after-clicking-any-link/#post-15774497)
 * Solved this for me.
 *     ```
       a:focus {
        outline: 0 !important; 
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Alter Recent Posts Homepage Title Heading](https://wordpress.org/support/topic/alter-recent-posts-homepage-title-heading/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/alter-recent-posts-homepage-title-heading/#post-15774254)
 * You are Great. Thanks.
    But not showing correctly in mobile if the title is long.
   Plz check the image.
 * > [View post on imgur.com](https://imgur.com/IuSBLO4)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce] Error when try to update the employee](https://wordpress.org/support/topic/error-when-try-to-update-the-employee/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/error-when-try-to-update-the-employee/#post-10439403)
 * Great . Now working. how to update in future.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wp-Insert] Unable to add ads in In-Post Ads section](https://wordpress.org/support/topic/unable-to-add-ads-in-in-post-ads-section/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/unable-to-add-ads-in-in-post-ads-section/#post-8479943)
 * Also trid in different browsers with different OS. Deactivated and then activated.
   Tried all but still no luck. Any help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC - APG SMS Notifications] How to get full Product Name in sms](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/#post-7366295)
 * I’ll send it to you in a couple of days (hello at creativebynature dot in). plz
   wait. Now i am out of the office.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC - APG SMS Notifications] How to get full Product Name in sms](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/#post-7366290)
 * Are you from creativebynature(dot)in
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC - APG SMS Notifications] How to get full Product Name in sms](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/)
 *  Thread Starter [Atharvan](https://wordpress.org/support/users/atharvan/)
 * (@atharvan)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-full-product-name-in-sms/#post-7366212)
 * And changed successfully. Thanks

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/atharvan/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/atharvan/replies/page/2/?output_format=md)