Jean LeSheep
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Index Attachment PagesIs there something slightly off since I got this message:
Parse error: syntax error, unexpected ‘;’ in /home3/dtphost/public_html/example/blog/wp-content/themes/theme/functions.php on line 48Forum: Plugins
In reply to: [Relevanssi - A Better Search] Index Attachment PagesIt did work when i added &post_type=attachment. I couldn’t find anything in my theme related to attachment search, but I did find this snippet for anyone else that might need it:
function my_attachments_search( $query ) { if ( !is_search() ) return $query; $post_types = $query->get( 'post_type' ); if ( ! $post_types || 'post' == $post_types ) $post_types = array( 'post', 'attachment' ); if ( is_array( $post_types ) ) $post_types[] = 'attachment'; $query->set( 'post_type', $post_types ); return $query; } // hook our function to the filter add_filter( 'pre_get_posts', 'my_attachments_search' );
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] How to Add Variation Titles DisplayI have it in my header file like this:
<script> (function($){ //create closure so we can safely use $ as alias for jQuery $(document).ready(function(){ $( ".tawcvs-swatches" ).append( "<div class='variationTitle'></div>" ); $('.swatch').on('click', function() { var title = $(this).attr('title'); $(this).siblings('.variationTitle').text(title); }); }); })(jQuery); </script>
Forum: Plugins
In reply to: [WooCommerce] Advanced Shipping Zone OptionsThanks, I’m trying to work it out…but it’s not calculating right. Here is my logic.
Calculation Type:Per Order: Charge most expensive…
Sofa Shipping Class Logic: 500 + ( 60 * [qty] )
As I understand, that would be a base shipping cost of $500 plus $60 for each item in the cart.But when I have 1 Sofa, 2 Lamps (same product with qty 2), the shipping comes out to $560.
I assume that’s not right…
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Product information – quantityI also need this. So 1 column would be the “Quantity” of items ordered. The other column would be the “Product Name (Information)”.
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Adding fieldsDo you just keep repeating the three steps? I feel like there would be an array you would keep everything together.
Forum: Plugins
In reply to: [Event Organiser] iCal link for individual eventIt seems this plugin has the ability: https://wp-events-plugin.com/
But I really don’t want the hassle of switching. But the client is demanding it, so it might be my only option.
Will do. Thanks.
Forum: Plugins
In reply to: [Event Organiser] Show Event Span Multiple Days in Single-event Template.After a variety of trial and errors, I figured it out…on a test site!
<?php if( eo_get_the_start( 'F j\, Y' ) != eo_get_the_end( 'F j\, Y' ) ){?> <h3><?php printf(__('%s','eventorganiser'), eo_get_the_start('F j\, Y' ));?> <?php printf(__('%s','eventorganiser'), eo_get_the_end( ' \-\ F j\, Y' ) );?></h3> <?php }else{ ?> <h3><?php printf(__('%s','eventorganiser'), eo_get_the_start('F j\, Y \a\t g:ia' ));?> <?php printf(__('%s','eventorganiser'), eo_get_the_end( '\-\ g:ia' ) );?></h3> <?php } ?> <?php endif; ?>
Not sure if there is a better way of doing it, but it’s functional if anyone else has experienced this problem.
Thanks.Forum: Plugins
In reply to: [Event Organiser] Calendar widget — cannot navigate to previous or next monthJust for reference….I just had the same problem and this suggestion fixed it:
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,Forum: Plugins
In reply to: [Event Organiser] Show Event Span Multiple Days in Single-event Template.Thanks Stephen….
Not to feel stupid, but does this go where the <h3> tag is or does it go with where the $date_format is ?
Thanks Again!
Forum: Plugins
In reply to: [Simple Promo Code] Add multiple promo codes to one text box.I’m looking for the exact same thing.
Forum: Plugins
In reply to: [Import Users from CSV] Not importing (Mac)Aljuk,
What did you do? I cant’ seem to figure out how to import?
Excel seemed to be saving without “” around each field, which when I opened the example file in a code editor it had the quotes. But I tried that and it still doesn’t work.Thanks
Same problem here. Same Error. Even BOUGHT THE PRO VERSION 2 hours ago. I will have to return unless this image search feature gets resolved.
It’s not an option for my images not be searchable.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] 3.5.2 update makes plugin unable to log inI am having the same problem. Everyone is activated. It worked a few weeks ago. I had the default captcha setup. I deactivated it. Nothing. I updated the plugin itself. Nothing. I updated to wordpress 3.5.2. Nothing.
Please help. I will send any login info you need.