kris0507
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] w3 total chache cached files contain virusOk. So now ClamAV is detecting NextGen Gallery plugin files (more than 10 files) as infected. BTW, it did NOT detect cached files as virus this time ??
One of the example link
public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_album/static/extended_settings.min.js: PUA.JS.Obfus-6
While I am 99% sure its NOT the plugin issue because I deleted all the files and re uploaded new files.
What do you think guys? Is it another false positive by ClamAV?
Awaiting your feedback / suggestions.
Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] w3 total chache cached files contain virusEven I think ClamAV is detecting false positive on all cached files (WP Super Cache). In my case also detecting NextGen gallery files as infected, tough I deleted all files and reinstalled again.
Hosting provider is closing OutBound PORT repeatedly… slowing all the websites…
Like you guys said that ClamAV has fixed the issue… scanning my website right now in cPANEL.. Hopefully my outbound port gets unblocked ??
Thanks you guys for raising the issue and getting it noticed to ClamAV.
Forum: Plugins
In reply to: [WooCommerce] Custom field does not show in frontendRemove the IF condition
Change
global $post; if ( ! $post->post_excerpt ) { return; } ?>
to
global $post; ?>
That’s it. Custom fields will show up!
Forum: Plugins
In reply to: [WooCommerce] Custom field does not show in frontendRemove the IF condition
Change
global $post; if ( ! $post->post_excerpt ) { return; } ?>
to
global $post; ?>
That’s it. Custom fields will show up!
Forum: Plugins
In reply to: [WooCommerce] Custom field does not show in frontendHi lejendary, any luck on the issue?
Forum: Plugins
In reply to: [WooCommerce] Custom field does not show in frontendHi lejendary, did you find any solution to the issue?
I am facing exactly same issue.
The custom fields doesn’t show up if “Product Short Description” is left blank. The custom fields are visible ONLY if text is entered in “Product Short Description” field.
short-description.php code
<?php /** * Single product short description * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $post; if ( ! $post->post_excerpt ) { return; } ?> <div itemprop="description"> <?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?> <p class="customProductField">Item # : <strong><?php echo get_post_meta( get_the_ID(), 'item_number_custom_field', true ); ?></strong></p> <p class="customProductField">Mfr Model # : <strong><?php echo get_post_meta( get_the_ID(), 'mfr_model_number_custom_field', true ); ?></strong></p> <p class="customProductField">UOM Name : <Strong><?php echo get_post_meta( get_the_ID(), 'uom_name_custom_field', true ); ?></strong></p> <p class="customProductField">UOM Quantity : <Strong><?php echo get_post_meta( get_the_ID(), 'uom_quantity_custom_field', true ); ?></strong></p> <p class="customProductField">MOQ : <Strong><?php echo get_post_meta( get_the_ID(), 'moq_custom_field', true ); ?></strong></p> <p class="customProductField">Shipping Weight : <strong><?php echo get_post_meta( get_the_ID(), 'shipping_weight_custom_field', true ); ?><strong></p> </div>
Forum: Fixing WordPress
In reply to: Image issues after moving site to new serverHi sjbmaine,
I am having exactly the same issue that you are having while moving my sites from one server to another server (same domain name). However, in my case the number of wordpress sites are 20+. Few of my featured images are missing and few of my thumbnail images are missing in all the sites.
On doing a right click inspect element on the missing thumbnail (in chrome browser) i am able to see the url. Below is the url:
<img src=”/home/server_name/public_html/domain_name.com//wp-content/uploads/2012/02/post_big_img_heavy1-28593_212x213.jpg”>
which actually should have been:
<img src=”https://domain_name.com//wp-content/uploads/2012/02/post_big_img_heavy1-28593_212x213.jpg”>
On double clicking on the image (in chrome inspect element) it opened in a new browser with the following url:
As you can see above, its shows the wrong url with domain name repeating twice which is causing the image not to display.
I just checked your reference website mentioned above and could see that the thumbnail images are visible. It would be great if you can share with me the solution of this problem as I need to work on 20+ websites.
Thanks