mttindustries
Forum Replies Created
-
I’m having the exact same issue. For whatever reason it just the featured image that won’t load. All the other product gallery images load
Forum: Plugins
In reply to: [New User Approve] update brokenThe other plugins are:
bbpress
bloom
divi 100 artilce cards
duplicate post
email as username for wp-members
email login
event registration calendar
expire users
new user approve
ninja forms
slider revolution
tinyMCE Advanced
wordpress file upload pro
wordpress importer
wp-membersThe issue I have is that I have all three flat rate, free shipping and local pick up. If using the code first suggested it disabled the local pick up option if the item is free shipping. If the item can be shipped free (ie over $250) I still want there to display the local pick up as an option. How do I still allow that? My shipping isn’t restricted to different zones, this is just the stand shipping country wide.
I also agree I think this is a bug because you need to be making the product woocomerce user friendly for the most simplest of people. Our clientel wouldn’t know any coding and so this needs to be inbuilt in the backed end. Also what happens when woocommerce updates and the code isn’t valid anymore?
- This reply was modified 8 years, 1 month ago by mttindustries.
Forum: Plugins
In reply to: [New User Approve] New Users registering with passwordI’m wondering the same thing. Some help would be great
Forum: Plugins
In reply to: [New User Approve] Approval / Denial messageIf you know php you can edit it through the plugin files, new-user-approve then in the includes folder/directory you can edit the messages in the messages.php file
function nua_default_approve_user_message() { $message = __( 'Your registration for {sitename} has been approved.' . "\r\n\r\n". 'Your registration information is below.' . "\n". ' You may wish to retain a copy for your records', 'new-user-approve' ) . "\r\n\r\n"; $message .= ('{username}') . "\r\n\r\n"; $message .= ('{password}') . "\r\n\r\n"; $message .= "You can now login and view our support area: \n";
Forum: Plugins
In reply to: [Iptanus File Upload] Don’t upload to wp-contents?I’m having the same issue even with the ../ in the directory it’s still uploading everything into the wp-contents/uploads folder
[wordpress_file_upload uploadpath=”../uploads-support/%username%” fitmode=”responsive” createpath=”true” duplicatespolicy=”maintain both” uniquepattern=”datetimestamp” placements=”filename+selectbutton+uploadbutton/message” successmessage=”File %filename% uploaded successfully to %filepath%” widths=”plugin:100%” userdatalabel=”Your message|t:text|s:bottom|r:0|a:0|p:inline|d:” postlink=”true”]
Forum: Fixing WordPress
In reply to: thumbnails not showing when previewing pageThanks for the help. Looks like it’ll have to do for now.
I wonder if there’s a section here on reporting bugs in the latest update?Forum: Plugins
In reply to: [Upcoming Events Lists] category supportnevermind. Ended up getting it to work by adding
'taxonomies' => array('category'),
to the upcoming-events-list.php file just after supports and labels, like so:
'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', ), 'taxonomies' => array('category'), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true,
works a charm now (until it updates). Maybe something to consider with the next update ??
Forum: Plugins
In reply to: [Upcoming Events Lists] place all events on a pageyou could try using the event short code on the wordpress page. Which is in the documentation somewhere. Or add it via php in hard code to your page template, something along the lines of this is what I used:
<?php //Define your custom post type name in the arguments $args = array( 'post_type' => 'event', 'showposts' => '12', 'meta_query' => array( array( 'key' => 'event-end-date', 'value' => $today, 'compare' => '>=' ) ), 'post_status' => 'publish', 'orderby' => 'date', 'order' => 'ASC', ); //Define the loop based on arguments $loop = new WP_Query( $args ); //Display the contents ?> <?php if ( $loop->have_posts() ) : ?> <table class="shows"> <?php while ( $loop->have_posts() ) : ?> <?php $loop->the_post(); $event_start_date = get_post_meta( get_the_ID(), 'event-start-date', true ); $event_end_date = get_post_meta( get_the_ID(), 'event-end-date', true ); ?> <tr> <td class="date"><?php echo date_i18n( 'M', $event_start_date ); ?><br /> <?php echo date_i18n('d', $event_start_date ); ?>-<?php echo date_i18n('d', $event_end_date ); ?><br /> <span><?php echo date_i18n('Y', $event_start_date ); ?></span></td> <td class="info"><?php the_content(); ?> </td> </tr> <?php endwhile;?> </table> <?php else: ?> <p>Sorry there are no shows scheduled at the moment. Please check back again soon.</p> <?php endif; ?> <?php wp_reset_query(); ?>
Forum: Plugins
In reply to: [WP Store Locator] addtional information tab not workingI tried the fix but it ran into a whole bunch of php errors. It’s okay the root relative plugin is being more troublesome than it’s worth. I’ll just deactivate it and keep searching around for a better solution to the relative links issue. Appreciate all your help, sorry to waste your time.
Forum: Plugins
In reply to: [WP Store Locator] addtional information tab not workingthe plugin can be found here https://www.ads-software.com/plugins/root-relative-urls/
there is an option to exclude paths. I tried it for the admin path and just wordpress directory path but it didn’t do anything.
Forum: Plugins
In reply to: [WP Store Locator] addtional information tab not workingSo losing the site when uninstalling the relative root url plugin turned out to only be a mac issue because the url needed :8888 on it where as on windows it doesn’t. So I tried it all again on windows and can confirm it is the root relative url plugin that is interfering. With that switched off it all works perfectly.
However I still need the root relative url plug in for security purposes with images posted. And I haven’t found any php function code that works, the plugin is just a dream. So I tried out Gwebpro Store Locator and that works a dream with the other plugin. (I only need something to list all the store locations, then I’ve been listing them myself on my own custom map and custom page through just php as you’d call any wordpress post) – but I notice that plug in doesn’t use tabs/java to write in any addtional information. So I wonder if in an update you need to either look how the java is being called, or just not use a tabbed system that requires it and just list addtional info and etc under each other
Forum: Plugins
In reply to: [WP Store Locator] addtional information tab not workingI tried it in other browsers and on another computer, same problem.
The js errors that come up are:
localhost:8888/maps/api/js?libraries=places&language=en&ver=4.4.2 failed to load resource: the server responded with a status of a 404and Uncaught ReferenceError: google is not defined wpsl-admin.min.js:1
I deactivated all the plugin (expect 1, cause when I did I lost the entire website, the whole system crashed, and that was a relative root url plugin, converts all url paths to relative paths instead of absoulte paths. I suspect that might be the issue with the first java error. As I have no maps directory)
and with all the other plugins disabled it still has the same issue
Forum: Fixing WordPress
In reply to: Getting search on the same pageanyone?
Forum: Fixing WordPress
In reply to: targeting indivuial ids to each display different colour php and cssNevermind got it working
<span class="proptery-type-grid"><?php $post_terms = get_the_terms( $post->ID, 'property-type' ); foreach( $post_terms as $term) { if( $term->name == 'Verve') { echo '<span class="proptery-verve">Verve</span>'; } elseif( $term->name == 'Zest') { echo '<span class="proptery-zest">Zest</span>'; } else { echo '<span class="proptery-type-grid type-none"></span>'; } }?></span>
The term names needed capitals and it was a – instead of a _ for property-type
Thank you so much for your help ??