Rand HOPPE
Forum Replies Created
-
I turned on Debug mode. Squashed two bugs. Now I can’t see anything when choosing to Preview a MetaSlider .
@steveburge, I made another duplicate of the slideshow that is causing trouble, and it does not preview correctly.
I made a copy of one of the other, long unchanged slideshows. It previews fine, but when I add a slide to it the addition is not shown in the preview.I will try other things and report back.
Oh darn it, I did all the work and responded to each of the points, but I guess I didn’t send and lost it all. Short story is that there was no resolution, nothing worked. Only the slider on our home page which the comms person adds and removes from regularly fails, we have others, and they are fine.
I engaged the developer of our site and they say “I created a copy of the slider and the preview isn’t working correctly. Previews of old slideshows work fine, showing the dots and animation. It seems if you add something new, things just break down.”I’ll try to rollback later on and add something new, as our comms person has been doing since forever, and see if it’s broken there, too.
Thanks, @stevejburge. I did my best with the guide, without success.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] running smoothy untilI turned on debug, ran two transactions, and nothing was written to ipn_handle_debug.txt
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] running smoothy untilI just sent a test transaction with the item that has the shortcode [wp_cart_button name=”Foxhole poster” price=”10.00″]
I have the buyer email checkbox checked, but nothing was received. I’m not concerned about that, really just the PayPal emails. I don’t have the seller email checkbox checked.
But, as I originally wrote, the email I am concerned about is the PayPal “Notification of payment received” email. The email I received did not include the words “Foxhole poster” in the Description, just the words “Shopping Cart.”
If I log into PayPal, I can see “Foxhole poster” in the details of the transaction.
Thanks for any help!
- This reply was modified 1 year, 2 months ago by Rand HOPPE.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Using PayPal Shipping profileI disabled PayPal Smart Checkout, and it seems to be acting as hoped for.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Using PayPal Shipping profileSure! Thanks!
https://kirbymuseum.org/gift-shop-t-shirts/
[wp_cart_button name=”Galactic Black t-shirt” price=”30.00″ var1=”Size|Women’s L|Men’s XS|Men’s S|Men’s M|Men’s L|Men’s XL|Men’s 2XL”]
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Using PayPal Shipping profileI have one amount-based shipping method each for domestic and international shipping on PayPal that reflect the $ amounts above in my OP.
I have checked the “Use PayPal Profile Based Shipping” box in my settings. What else must I do?
Forum: Themes and Templates
In reply to: [Twenty Twelve] Facebook OG not finding images on child themeHmm. Scraper is now scraping.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Facebook OG not finding imagesAh, never mind.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Facebook OG not finding images on child themeTo follow up: of all installed plug-ins, only Akismet has been updated since 2 June
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Taxonomy Image on Archive PageThis pretty much my issue, as well. Would like to have the tag image appear next to each post in a category/archive/search page. Using a Twenty Twelve child theme, I’ve been trying to figure out what to place in content.php, with no success. Any ideas?
Thank you very much, again! Of course it had to be something like that…
Thank you, again frendeliko, but still no success here. ??
Here’s my child functions.php
<?php // Add your own functions below this line if ( ! function_exists( 'twentytwelve_entry_meta' ) ) : /** * Prints HTML with meta information for current post: categories, tags, permalink, author, and date. * * Create your own twentytwelve_entry_meta() to override in a child theme. * * @since Twenty Twelve 1.0 */ function twentytwelve_entry_meta() { // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'twentytwelve' ) ); // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) ); $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'twentytwelve' ), get_the_author() ) ), get_the_author() ); // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. if ( $tag_list ) { $utility_text = __( '<div class="by-author"> by %4$s</div> <div class="posted-and">Posted %3$s in %1$s and tagged %2$s</div>', 'twentytwelve' ); } elseif ( $categories_list ) { $utility_text = __( '<div class="by-author"> by %4$s</div> <div class="posted-and">Posted %3$s in %1$s.</div>', 'twentytwelve' ); } else { $utility_text = __( '<div class="by-author"> by %4$s</div> <div class="posted-and">Posted %3$s.</div>', 'twentytwelve' ); } printf( $utility_text, $categories_list, $tag_list, $date, $author ); } endif; function twentytwelvechild_custom_header_setup() { $header_args = array( 'height' => 125, 'width' => 770 ); add_theme_support( 'custom-header', $header_args ); } add_action( 'after_setup_theme', 'twentytwelvechild_custom_header_setup' ); function mytheme_dequeue_fonts() { wp_dequeue_style( 'twentytwelve-fonts' ); } add_action( 'wp_enqueue_scripts', 'mytheme_dequeue_fonts', 11 ); function child_theme_load_fonts() { wp_register_style('googleFontsDroid', 'https://fonts.googleapis.com/css?family=Droid+Serif:400italic,700italic,400,700'); wp_enqueue_style( 'googleFontsDroid'); } add_action('wp_enqueue_scripts', 'child_theme_load_fonts');
and
body line added to child stylesheet
body { font-family: "Droid Serif",Georgia,Times,serif; }