Rob Bertholf
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WooCommerce Show Attributes] Make the attributes links?I used:
// Add Hyperlinks to Attributes in Additional Information Tab on Product Page add_filter ('woocommerce_attribute', 'rb_link_attributes', 10, 3); function rb_link_attributes($attributes_string, $attribute, $terms) { global $post; $taxonomy = get_taxonomy( $attribute['name'] ); if ( $taxonomy && ! is_wp_error( $taxonomy ) ) { $attribute_string = ''; $terms = wp_get_post_terms( $post->ID, $taxonomy->name ); if ( !empty( $terms ) ) { foreach ( $terms as $term ) { if (strlen($attribute_string) > 0) { $attribute_string .= ', '; } $archive_link = get_term_link( $term->slug, $attribute['name'] ); $attribute_string .= '<a href="' . $archive_link . '">'. $term->name . '</a>'; } } } return '<p>'.$attribute_string.'</p>'; }Forum: Fixing WordPress
In reply to: New .htaccess malware hack?Another case from MailPoet plugin: https://forum.jquery.com/topic/big-problem-14-9-2014
Forum: Fixing WordPress
In reply to: New .htaccess malware hack?Another case: http://blog.secupress.fr/attaques-wordpress-261.html
Forum: Fixing WordPress
In reply to: New .htaccess malware hack?I had the same, it came in via a WYSIJA newsletter plugin
Forum: Everything else WordPress
In reply to: WordPress Logo in vector formatHello, I found the AI Files here:
http://sharealogo.com/internet/wordpress-vector-logo-download/HOWEVER…. It is not the approved one as per:
http://ww.wp.xz.cn/about/logos/The 2nd link gives you tons of great downloads but not in .AI format
Viewing 5 replies - 1 through 5 (of 5 total)