Kashif Rafique
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Links added to the bottom of my site. Please help!Someone able to compromise your website and added the SEO Spam links in the footer. Remain calm and carefully follow this guide. When you’re done, you may want to implement some (if not all) of the recommended security measures.
I am following this thread and if you need further help, please write back here.
Forum: Fixing WordPress
In reply to: Panorama in TAB needs "help" to be shownIf you use a commercial plugin and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
It seems that you are using Pano2VR to generate the panorama and embedding it into WordPress using their plugin. You can contact them directly as mentioned in their FAQs or post in the support from https://ggnome.com/forum/.
Forum volunteers are also not given access to commercial products, so they would not know why your commercial plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Plugins
In reply to: [ITRO Popup Plugin] limitation pop ups in pro licensePlease go to their official support channel as support for the commercial theme or plugin. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
If your question is related to the ITRO Popup free version available on wordpress.org, then we are happy to look and try to help you. Thank you.
Forum: Plugins
In reply to: [Contextual Related Posts] How do I move related post under bottom share bar?Which plugin do you use for the share bar?
By the way, providing a link of your website is a good idea. It will help the plugin/theme author and/or volunteers to troubleshoot the problem and suggest the solution. 🙂
Forum: Plugins
In reply to: [Contextual Related Posts] I want shortcodes[crp] is the only shortcode available in this plugin. It has three optional attributes limit, heading and cache.
How to use Shortcode
You can insert the related posts anywhere in your post using the [crp] shortcode. The plugin takes three optional attributes limit, heading and cache as follows:[crp limit="5" heading="1" cache="1"]
limit : Maximum number of posts to return. The actual number displayed may be lower depending on the matching algorithm and the category / post exclusion settings.heading : By default, the heading you specify in Title of related posts: under Output options will be displayed. You can override this by specifying your own heading e.g.
<h3>Similar posts</h3> [crp limit="2" heading="0"]cache : Cache the output or not? By default the output will be cached for the post you add the shortcode in. You can override this by specifying cache=0
In addition to the above, the shortcode takes every option that the plugin supports. See crp_default_options() function to see the options that can be set.
Forum: Fixing WordPress
In reply to: HTML page showing Excel SpreadsheetI would suggest to embed the Excel spreadsheet directly in your WordPress webpage. There are 2 ways to do it.
Microsoft OneDrive Excel Web App
If you don’t want to install another plugin and have access to OneDrive account, then OneDrive Excep Web App is the better option. You can find the step by step guide with the screenshots on following link:You can tweaks the appearance and size as per your liking.
By using Plugin
If you prefer the plugin option, then following 2 plugins are good choices:
Embed Any Document
Google Doc EmbedderBoth plugins offer different options to control the appearance and size.
It would be better if you embed the spreadsheet on a full width page to get the better viewing result.
Forum: Fixing WordPress
In reply to: Cannot set amount of products // No slider (webshop Shopera)There is a dedicated support forum available for Shopera theme. Contacting the theme author directly may result in better and quick support. Please contact the theme author directly. Thank you.
Thanks Ulrich for the answer. 🙂
Forum: Plugins
In reply to: [Contextual Related Posts] Multiple instance on single postThat new feature will help a lot! Thank you for the awesome work.
Forum: Plugins
In reply to: [Contextual Related Posts] Multiple instance on single postThanks for the update. Do you have any ETA on the OFFSET feature?
Forum: Plugins
In reply to: [ITRO Popup Plugin] Gravity Form Shortcode not working on v4.7On further investigation, I found the following code on line 31 of itro-popup/templates/itro-popup-template.php
echo do_shortcode( str_replace("\r\n",'',_e($custom_field)) ); /* return the string whitout new line */When I removed _e() function from this line, it worked fine again. Here is the new code:
echo do_shortcode( str_replace("\r\n",'',$custom_field) ); /* return the string whitout new line */P.S. The working code was also part of the old version.
Forum: Plugins
In reply to: [ITRO Popup Plugin] Gravity Form Shortcode not working on v4.7I am also facing the same issue with Mailbag plugin. Before upgrading to 4.7, Mailbag shortcode was working fine, but now [mailbag_mailchimp] is showing on the popup.
Forum: Plugins
In reply to: [Page-list] Navigation to show siblings and children of current pageI am also looking for same solution, but did not find any.
I removed the updated wp-property plugin (ver 1.42.4) and installed the previous version (1.42.3) via ftp and site is working again.
Old ver link:
https://downloads.wordpress.org/plugin/wp-property.1.42.3.zipUpdate to which version? 5.2 to 5.3?