Title: sysguides's Replies - page 2 | WordPress.org

---

# sysguides

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

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

 Search replies:

## Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)

[←](https://wordpress.org/support/users/sysguides/replies/?output_format=md) [1](https://wordpress.org/support/users/sysguides/replies/?output_format=md)
2

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Image preview – No close button](https://wordpress.org/support/topic/image-preview-no-close-button/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/image-preview-no-close-button/#post-14912576)
 * Thanks
 * I did that for 1st image and the close button is visible now. But the hover icon
   won’t change now. Earlier it would change to a hand icon when the cursor is placed
   on the image and also the link URL would display on the status bar. They won’t
   show anymore. The cursor remains as an arrow pointer and the URL will not be 
   displayed on the status bar.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Hide page title heading](https://wordpress.org/support/topic/hide-page-title-heading/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/hide-page-title-heading/#post-14870630)
 * Thanks. It helped.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] How to set width of last column in mobile?](https://wordpress.org/support/topic/how-to-set-width-of-last-column-in-mobile/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years ago](https://wordpress.org/support/topic/how-to-set-width-of-last-column-in-mobile/#post-14525905)
 * [@tobiasbg](https://wordpress.org/support/users/tobiasbg/)
 * It’s working great now. Thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Disable post title and breadcrumb in blog header](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/#post-14398361)
 * [@sansolo](https://wordpress.org/support/users/sansolo/) Thank you very much.
   Really appreciate the help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Disable post title and breadcrumb in blog header](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/#post-14397858)
 * [@sansolo](https://wordpress.org/support/users/sansolo/) Thank you for putting
   up with me. I’m not a PHP programmer, but from what I understood and did are 
   the following:
 *     ```
       mkdir -p oceanwp-child-theme-master/partials/single
       cp -arv oceanwp/partials/single/* oceanwp-child-theme-master/partials/single/
       vim oceanwp-child-theme-master/partials/single/meta.php
       ```
   
 * and for author changed from
 *     ```
        <?php if ( 'author' === $section ) { ?>
          <li class="meta-author"<?php oceanwp_schema_markup( 'author_name' ); ?>><span class="screen-reader-text"><?php esc_html_e( 'Post author:', 'oceanwp' ); ?></span><i class="<?php echo $theme_icons[ 'user' ][ $icon_t ]; ?>" aria-hidden="true"></i><?php echo esc_html( the_author_posts_link() ); ?></li>
         <?php } ?>
       ```
   
 * to this
 *     ```
        <?php if ( 'author' === $section ) { ?>
          <li class="meta-author"<?php oceanwp_schema_markup( 'author_name' ); ?>><span class="screen-reader-text"><?php esc_html_e( 'Post author:', 'oceanwp' ); ?></span>By <?php echo esc_html( the_author_posts_link() ); ?></li>
         <?php } ?>
       ```
   
 * and for modified changed from
 *     ```
         <?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><i class="<?php echo $theme_icons[ 'm_date' ][ $icon_t ]; ?>" aria-hidden="true"></i><?php echo esc_html( get_the_modified_date() ); ?></li>
         <?php } ?>
       ```
   
 * to this
 *     ```
         <?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>Updated <?php echo esc_html( get_the_modified_date() ); ?></li>
         <?php } ?>
       ```
   
 * I tried this on my local WordPress test site and it’s working superbly. If what
   I’ve done is correct and if you say go forward, I’ll apply it to the production
   website.
 * Thanks
    -  This reply was modified 5 years, 1 month ago by [sysguides](https://wordpress.org/support/users/sysguides/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Disable post title and breadcrumb in blog header](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/#post-14397156)
 * [@sansolo](https://wordpress.org/support/users/sansolo/), Thanks for the reply.
 * Is this for the whole site or just for blog posts? I don’t want to change icons
   for the whole site. I only want to change icons to text in blog posts only that
   too for meta under the post title.
 * On the webpage ‘Inspect’ mode, I can change it from `.icon-user:before { content:"\
   e005" }` to `.icon-user:before { content: "By "; }`.
 * But if I copy the same code to css file, nothing happens.
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Disable post title and breadcrumb in blog header](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/disable-post-title-and-breadcrumb-in-blog-header/#post-14391198)
 * I resolved 1st point by disabling breadcrumb in Customize -> General Options -
   > Page Title and unchecking ‘Enable Breadcrumbs’. Title I disabled using the 
   CSS code:
 *     ```
       .single h1.page-header-title {
           display: none;
       }
       ```
   
 * I still need to resolve 2nd point.
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Remove breadcrumbs on Pages, but keep on Blog Posts](https://wordpress.org/support/topic/remove-breadcrumbs-on-pages-but-keep-on-blog-posts/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/remove-breadcrumbs-on-pages-but-keep-on-blog-posts/#post-13866072)
 * Worked like a charm. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] reCaptcha v3 not working…](https://wordpress.org/support/topic/recaptcha-v3-not-working-10/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/recaptcha-v3-not-working-10/#post-13833768)
 * Hi
 * Thanks for replying. I switched on ‘JS Combine External and Inline’ option, and
   now it is working fine.
 * Appreciate help, Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] How to change Link color in blog/page content only.](https://wordpress.org/support/topic/how-to-change-link-color-in-blog-page-content-only/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/how-to-change-link-color-in-blog-page-content-only/#post-13822787)
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Social Share no email link.](https://wordpress.org/support/topic/social-share-no-email-link/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/social-share-no-email-link/#post-13822784)
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Social Share no email link.](https://wordpress.org/support/topic/social-share-no-email-link/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/social-share-no-email-link/#post-13813410)
 * Thanks for replying.
 * Noob here. I did all the steps as you mentioned. Created directories and copied
   social-share.php file.
 *     ```
       -bash-4.2$ pwd
       /home/xxxxxxxx/public_html/wp-content/themes/oceanwp-child-theme-master/templates/extra
   
       -bash-4.2$ ls -lh
       -rw-r--r-- 1 u271225073 o51061835 24K Dec 20 08:32 social-share.php
       ```
   
 * But nothing changed. The options I get are still the same. No ‘Email’ Share-with
   option. The options still available are Facebook, Twitter, Linkedin, Reddit, 
   WhatsApp, Google Plus, Pinterest, Viber, VK, Tumblr, and Viadeo.
 * Do I have to add some PHP code or something like that to ‘create’ email share-
   with option in blog posts?
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] How to change font size, color of Code Block?](https://wordpress.org/support/topic/how-to-change-font-size-color-of-code-block/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-font-size-color-of-code-block/#post-13770605)
 * Cool. It solved my problem. Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Featured Image Size](https://wordpress.org/support/topic/featured-image-size-108/)
 *  Thread Starter [sysguides](https://wordpress.org/support/users/sysguides/)
 * (@sysguides)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/featured-image-size-108/#post-13764343)
 * I was using 800×450 and was wondering if it is too small.
 * Thanks, it helped.

Viewing 14 replies - 16 through 29 (of 29 total)

[←](https://wordpress.org/support/users/sysguides/replies/?output_format=md) [1](https://wordpress.org/support/users/sysguides/replies/?output_format=md)
2