ddevries
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] frontend uploadThat did the trick – thank you!!
Forum: Plugins
In reply to: [WP Photo Album Plus] frontend uploadOk, I will contact them – thank you very much for the quick reply.
Forum: Plugins
In reply to: [WP Photo Album Plus] frontend uploadHi, I’m having a problem with the limits. Table VII-B10.2 is set to 0, yet I get this message when I try to upload on the front-end:
The image is too big. Max photo size: 3508 x 2631 (8.8 MegaPixel) Upload failed.
The photo I am trying to upload is 4237×3256 and 1Mb.
Is 3508 x 2631 the maximum internal limit when you select 0?Thank you so much for the help.
DarleneForum: Plugins
In reply to: [WP Photo Album Plus] Can’t upload photo from camera roll on iphoneTHANK YOU!! ??
Forum: Plugins
In reply to: [BuddyPress to WordPress Full Sync] Errors after upgradingThat did it – thanks!
Forum: Plugins
In reply to: [BuddyPress to WordPress Full Sync] First Name and Last Name don’t sync?No, I didn’t have that checkbox disabled. When I unchecked it, the first name and last name started sync’ing perfectly. Problem solved! Thank you so much.
Darlene
Forum: Plugins
In reply to: [BuddyPress Custom Profile Menu] Where to customze tabs?Yes, I’m sorry to say I misunderstood. A refund would be very much appreciated. Thank you for the quick response.
Forum: Plugins
In reply to: [WP Photo Album Plus] Users cannot upload from their phonePerfect! Thanks so much for the quick response. I just made a donation and submitted a review. I so appreciate all your work on this. ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] DISPLAY IMAGESMr. Platypus – thank you for that fix. It’s great!
Greg, the plugin is awesome – thank you. ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Category pages have no formattingHere is the code that ended up working for me. I still followed the instructions at https://wpadverts.com/documentation/child-themes-and-templates/, but this is what the contents of my taxonomy-advert_category.php is…
<?php /** * Template Name: WPAdverts category page * Description: Used as a page template to show classified ads by category. In addition to creating * this file, a section was added to the functions.php file to insert this file into the mix. */ // Remove the original loop remove_action( 'genesis_loop', 'genesis_do_loop' ); // Add the new function to execute the code given in https://wpadverts.com/documentation/child-themes-and-templates/ add_action( 'genesis_loop', 'dd_wpadverts_loop' ); function dd_wpadverts_loop() { $args = array( 'orderby' => 'post_date', 'order' => 'DESC', ); // Show the appropriate title echo '<h1 class="entry-title" itemprop="headline">Showing Ads for '; echo single_term_title(); echo '</h1>'; global $wp_query; remove_filter("the_content", "adverts_the_content"); echo shortcode_adverts_list(array( "category" => $wp_query->get_queried_object_id() )); wp_reset_postdata(); } genesis();
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Category pages have no formattingThanks for your response, Greg. I will do some more research on custom taxonomy templates specific to genesis. I will report back here when/if I have an answer. Thanks again for responding so quickly.
Darlene
One of them wasn’t checked. It worked!! Thanks so much for your quick response!! ??
Darlene
I downloaded both the Pro version and the add-on. I activated the add-on, and selected “you must be registered to vote” in my poll definition.
However, it is not working as expected. I thought it would keep a record of which users voted and only let them vote once, regardless of browser. I logged in using Firefox and voted. I then logged in using IE and was able to vote again. How is it limiting the votes by user?
Forum: Plugins
In reply to: [DW Question & Answer] How to remove status iconsJust checked in to see if there is a way to do this. Thanks.