Title: Rishi Shah's Replies | WordPress.org

---

# Rishi Shah

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Commenting] Functionality on Mobile](https://wordpress.org/support/topic/functionality-on-mobile/)
 *  Plugin Support [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [3 days, 23 hours ago](https://wordpress.org/support/topic/functionality-on-mobile/#post-18993689)
 * Hi [@alusk](https://wordpress.org/support/users/alusk/) 
   Thank you so much for
   confirming that the new mobile highlighting feature is working well on both Samsung
   and Apple devices. We really appreciate you taking the time to test it and share
   your feedback.
 * If you have a moment and are happy with the plugin, we would be very grateful
   if you could consider leaving a review on the plugin directory. It helps other
   users know what to expect and supports our continued development.
 * Of course, there is absolutely no obligation. We’re just glad the feature is 
   working for you!
   Thanks again,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Commenting] Functionality on Mobile](https://wordpress.org/support/topic/functionality-on-mobile/)
 *  Plugin Support [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [1 week, 6 days ago](https://wordpress.org/support/topic/functionality-on-mobile/#post-18984684)
 * Hello [@alusk](https://wordpress.org/support/users/alusk/) 
   Thank you for reporting
   this issue and for your patience.
 * We’re happy to let you know that this issue has been resolved in the latest version
   of the plugin. Please update to the most recent release and check if everything
   is working correctly on your mobile device.
 * If you still experience any problems after updating, please let us know along
   with your device, browser, and plugin version, and we’ll be happy to assist further.
 * Thanks again for helping us improve the plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Issue with MediaUpload component](https://wordpress.org/support/topic/issue-with-mediaupload-component/)
 *  Thread Starter [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/issue-with-mediaupload-component/#post-16794815)
 * Hello [@ihenetudan](https://wordpress.org/support/users/ihenetudan/)
 * Thank you for your response.!
 * Here are my answers to your questions:
 * _1) We need more information here. You said your plugin is working fine on the
   WP VIP server. Is this alongside Jetpack?_
   **Ans: **On the VIP server, we have
   not added additional Jetpack plugin because the VIP server provides it by default.
 * _2) When you say you only face the issue when you activate Jetpack from an archive
   downloaded from WP.org, that implies that the version of Jetpack in both cases
   differs? Is that correct? Also, can you check what Jetpack modules are active
   when the error occurs?_
 * **Ans: **We don’t activate any module yet on the** **Jetpack plugin, our plugin
   crashes by default settings of the Jetpack plugin. Also, we tried with three 
   versions lower of the Jetpack plugin, but we still got an error.
 * Please let me know if you need any other information from my side.
 * Thanks.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [I want to make a PHP Shortcode](https://wordpress.org/support/topic/i-want-to-make-a-php-shortcode/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/i-want-to-make-a-php-shortcode/#post-11524615)
 * Yes that is correct because on line 12 we close the PHP tag( ?> ) and line 14
   we start PHP tag again( <?php ). Line no 13 have HTML tag.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [I want to make a PHP Shortcode](https://wordpress.org/support/topic/i-want-to-make-a-php-shortcode/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/i-want-to-make-a-php-shortcode/#post-11524070)
 * Hello [@allroundernaman](https://wordpress.org/support/users/allroundernaman/),
 * Please use this code:
 *     ```
       function custom_shortcode_logincall() {
   
       	ob_start();
   
       	global $current_user;
       	$second_website_url = 'http://secondwebsite.com'; // put your second website url
       	$user_email = $current_user->user_email;
       	$user_login = $current_user->user_login;
       	if($user_email != ''){
       		$email_encoded = rtrim(strtr(base64_encode($user_email), '+/', '-_'), '='); //email encryption
       		$user_login_encoded = rtrim(strtr(base64_encode($user_login), '+/', '-_'), '='); //username encryption
       		?>
       		<a href="<?php echo $second_website_url.'/sso.php?key='.$email_encoded.'&detail='.$user_login_encoded; ?>" target="_blank" rel="noopener noreferrer">Link to second website</a>
       		<?php
   
       	}
   
       	$output_string = ob_get_contents();
       	ob_end_clean();
       	return $output_string;
   
       }
       add_shortcode( 'logincall', 'custom_shortcode_logincall' );
       ```
   
 * This is working for me.
 * Thanks,
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Media library not showing – images not showing on web pages](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/#post-11023626)
 * That was the solution for media library as well I think. Please try to upload
   any new image now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Media library not showing – images not showing on web pages](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/#post-11023485)
 * No the actual permission is r+w+x r+x r+x ( 755 ).
 * Please refer this article: [https://codex.wordpress.org/Changing_File_Permissions](https://codex.wordpress.org/Changing_File_Permissions)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Media library not showing – images not showing on web pages](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/media-library-not-showing-images-not-showing-on-web-pages/#post-11023370)
 * Hello roger6611,
 * I have checked and found that the images from upload folder is getting Access
   problem. Can you please check the permission of the wp-upload folder for it?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding space between last bullet in list and next paragraph](https://wordpress.org/support/topic/adding-space-between-last-bullet-in-list-and-next-paragraph/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/adding-space-between-last-bullet-in-list-and-next-paragraph/#post-10487792)
 * Hey,
 * Try this one:
 * `.entry li:last-child{ margin-bottom: 10px; }`
 * Hope it will help you.!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to decrease the width of the site?](https://wordpress.org/support/topic/how-to-decrease-the-width-of-the-site/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/how-to-decrease-the-width-of-the-site/#post-10487759)
 * Hello mandeepdebnath,
 * You can decrees the width value of .wrapper class ( Style.css line no: 967 ) 
   or you can create separate media style as well.
 * Thanks,
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Embed YouTube without link back to YouTube?](https://wordpress.org/support/topic/embed-youtube-without-link-back-to-youtube/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/embed-youtube-without-link-back-to-youtube/#post-9534731)
 * Hello press2000,
 * Please add **?modestbranding=1** end of the video URL.
 * Hope this works!
 * Thanks,
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Taxonomy Breadcrumb – Need to get Single Taxonomy Term, not the whole tree](https://wordpress.org/support/topic/taxonomy-breadcrumb-need-to-get-single-taxonomy-term-not-the-whole-tree/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/taxonomy-breadcrumb-need-to-get-single-taxonomy-term-not-the-whole-tree/#post-9534047)
 * Hello katzw,
 * If you select only one taxonomy term for that particular page or post I think
   this will be works:
 *     ```
       <?php 
       global $post;
       $fact_post_id = $post->ID;
       $fact_taxonomy = "transplant-types";
       $Cat = wp_get_post_terms( $fact_post_id, $fact_taxonomy, array("fields" => "names"));
       echo "Showing Results For: ".$Cat[0];
       ?>
       ```
   
 * Thanks,
    -  This reply was modified 8 years, 10 months ago by [Rishi Shah](https://wordpress.org/support/users/rishishah/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site Title Help](https://wordpress.org/support/topic/site-title-help-2/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/site-title-help-2/#post-9533998)
 * Hello crazycouplelife,
 * I think I solved your requirements please do my below steps:
 * 1) Remove word “Beta” from the site title from the “Site Identity” in Customize
   menu.
 * 2) Add below script into footer.php:
 *     ```
       <script>
       	jQuery( document ).ready(function() {
       		jQuery(".site-title a").append(' <span class"beta_title">beta</span>').show();
       	});
       </script>
       ```
   
 * 3) Add below code into style.css:
 *     ```
       .site-title a span {
       	font-size: 12px;
       }
       ```
   
 * And Its works correctly. Please see attachment of my local system.
 * **[https://ibb.co/kKZ4Jk](https://ibb.co/kKZ4Jk)**
 * Hope this works for you as well!
 * Thanks,
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [echo category custom post type](https://wordpress.org/support/topic/echo-category-custom-post-type/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/echo-category-custom-post-type/#post-9510093)
 * Hey fredericbdr,
 * Please make sure that you have created “categories” and use below code:
 *     ```
       $categories = get_terms( array(
       	'taxonomy' => 'Categories',
       	'hide_empty' => false,
       	'order' => 'DESC'
       ) );
       ```
   
 * Instead of
 * `$categories = get_terms('categories', array('order' => 'DESC'));`
 * Hope this helps to you!
 * Thanks,
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Private Page Error](https://wordpress.org/support/topic/private-page-error/)
 *  [Rishi Shah](https://wordpress.org/support/users/rishishah/)
 * (@rishishah)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/private-page-error/#post-8803591)
 * Hello jarendueles,
 * If you set a page as private you have to log in every time to show that page 
   otherwise it gives the “No Results” or “Page not found”.
 * If you set page on privet for reason to display the page to selected people then“
   Password protected” is more suitable option for you.
 * In “Password protected” visibility when any user open that page it will asked
   for the password and you can easily set any password for the page and share that
   password to selected people.
    -  This reply was modified 9 years, 6 months ago by [Rishi Shah](https://wordpress.org/support/users/rishishah/).

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

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