DivaVocals
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Single event posting does not workHey Seth.. Gosh.. How the heck did I miss this post…. **LOL** I would love to talk to you.. I’ll send you a message via your site..
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] CSS and JS not minified.Yeah.. Found that after I MANUALLY added everything.. Like I said.. I need to RTFM.. **LOL**.. But it’s all good.. All is right with the world now..
Well I had to move on.. This seems like it could be a cool plugin, but I had to get this site launched and I found another portfolio plugin to use instead.. Looking forward to seeing this one get all the kinks worked out..
If I build another WP E-Commerce site for a client and they this functionality I would indeed commission someone to build this for me (as I have done for other modules and plugins). This was for my own site, and while I could have used Zen Cart or Magento (which does have this functionality) I needed less e-commerce and more CMS for this particular site. In the meantime, I found a really workable “workaround” for my immediate issue..
I’ve contributed plenty of things back to the open source community, but these are all volunteer effort level of stuff.. Dunno about “contributing” back a modification that I paid for though..
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] CSS and JS not minified.All better.. Awesome plugin.. Next time I’ll RTFM before posting a silly question.. **LOL**
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] CSS and JS not minified.Nevermind.. I need to RTFM!!! **LOL**
I assumed this was similar to the minify module I use for Zen Cart. The Zen Cart module automatically minifies all CSS and JS files.
This plugin on the other hand requires you to explicitly state which CSS and JS files to minify.. I think I like this setup MUCH better.. Puts me in control of the plugin’s behavior.
So let me go back and try this again.. Will confirm that this is the beginning and end to my issue..
Sorry but the next release of eShop can now handle zero priced orders.
@rich ‘elfin’ Pedley – Well I look forward to testing this out when the next eShop release comes out.. (I have used it on two of my client’s sites) Unfortunately I won’t be able to use eShop for this site as I need to launch this site now, and I need to finalize the plugins. Plus eShop does not support USPS or UPS shipping which I also need for this particular site.. (which is why I was inquiring about Yak for WordPress)
Thanks for the response.. I ultimately decided to use the WP Downloads Manager plugin with some modifications to better support user registration (which is why I wanted to use an e-commerce solution for this). This will cover my free downloads. I will use an e-commerce plugin for the paid downloads..
This is not my ideal solution as I wanted ONE solution to handle both paid and free downloads. My only option for this is to use Zen Cart, or Magento which does support this functionality out the box..
Trouble is that for this site I need more CMS than e-commerce.. Though I could make Zen Cart work, in the end it’s a lot less development time to use WordPress for this particular site..
Anyway again.. thanks for the response.. ??
Here you go..
<?php ### Class: JH Portfolio Selector class WP_Widget_JH_Portfolio_Extra_Taxonomy extends WP_Widget { // Constructor function WP_Widget_JH_Portfolio_Extra_Taxonomy() { $widget_ops = array( 'description' => __( 'Shows a list of tags for the current entry', 'table_rss_news' ) ); $this->WP_Widget( 'jh_portfolio_extra_taxonomy', __( 'JHP Tags' ), $widget_ops ); } // Display Widget function widget( $args, $instance ) { extract( $args, EXTR_SKIP ); extract( $instance ); echo $before_widget; ?> <?php global $post; if( $terms = wp_get_object_terms( $post->ID, 'jh-portfolio-tag' ) ) : ?> <h4><?php echo $tax_title ?></h4> <div id="jh-portfolio-extra-taxonomy"> <p> <?php foreach( (array) $terms as $key => $term ) : ?> <?php if( $show_link ) : ?> <a href="<?php echo get_term_link( $term, 'jh-portfolio-tag' ) ?>"><?php echo $term->name ?></a><?php echo $key + 1 !== count( $terms ) ? ', ' : '' ?> <?php else : ?> <?php echo $term->name ?><?php echo $key + 1 !== count( $terms ) ? ', ' : '' ?> <?php endif; ?> <?php endforeach; ?> </p> </div> <?php endif; echo $after_widget; } function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['tax_title'] = (string) strip_tags( $new_instance['tax_title'] ); $instance['show_link'] = (string) strip_tags( $new_instance['show_link'] ); return $instance; } function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'width' => 200, 'height' => 150 ) ); $tax_title = esc_attr( $instance['tax_title'] ); $show_link = $instance['show_link']; ?> <p> <label for="<?php echo $this->get_field_id('tax_title'); ?>"> <?php _e('Extra Taxonomy Title:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('tax_title'); ?>" name="<?php echo $this->get_field_name('tax_title'); ?>" type="text" value="<?php echo $tax_title; ?>" /> </label> </p> <p> <label for="<?php echo $this->get_field_id('show_link'); ?>"> <?php _e('Show links in terms:'); ?> <input id="<?php echo $this->get_field_id('show_link'); ?>" name="<?php echo $this->get_field_name('show_link'); ?>" type="checkbox"<?php echo $show_link ? ' checked="checked"' : '' ?> /> </label> </p> <?php } } ### Function: Init Table News Widget add_action('widgets_init', 'widget_jh_portfolio_extra_taxonomy'); function widget_jh_portfolio_extra_taxonomy() { register_widget( 'WP_Widget_JH_Portfolio_Extra_Taxonomy' ); } ?>
I’ve since opted to use Mobify (https://mobify.me/). Mobify allowed me to configure the mobile version of my client’s site as I wanted it to appear.. (checkout the link above from your mobile device to see Mobify in action)
While I REALLY wanted the Wapple plugin to work, ultimately the issues with home pages not rendering in either Windows Mobile or on the Blackberry platform were a serious enough issue which required me to discontinue using this plugin.
BTW, for anyone checking out Mobify, you should know that you do not need the WordPress plugin, the javascript code provided will work perfectly.
I concur that this is indeed an issue.. I use the Next Gen Gallery on my client’s site, and on the front page we have a Next Gen slideshow displayed. This slideshow will not display on the Opera browser or the Blackberry browser. So yes this feature could indeed be improved..
I’ve decided that for now I will not use the Google Maps code that comes with this plugin.. The incorrect maps and the fact that it will not allow more than one map to display if I display more than one event on the same page is not acceptable.. For this client it’s much easier for me to simple get the Google iframe code and use that in my event descriptions instead..
I need to correct the website (links posted above) Here’s screen shots of what I was trying to describe:
Map that this plugin displays:
https://tinypic.com/r/102mrr7/6iframe map code from Google correctly shows this map:
https://tinypic.com/r/23stape/6In the admin for this plugin this is the map that shows (note that it matches the map generated in the Google iframe code):
https://tinypic.com/r/j9sv34/6Screen shot of the blog post page showing how the 1st post displays the map (even though the map is wrong), but other posts show the familiar green screen of death.
https://tinypic.com/r/fdaik6/6In addition to my sloppy copy and paste job, it appears that I did not provide a FULL modification.. Sorry about that.. So let’s try this again shall we??!! **LOL**
In the advanced-events-registration/includes/manage_events.php file make the following changes:
Replace lines 522-533, lines 543-554, lines 721-732, & lines 740-751 with the following:
<option name="1:00">1:00</option> <option name="1:15">1:15</option> <option name="1:30">1:30</option> <option name="1:45">1:45</option> <option name="2:00">2:00</option> <option name="2:15">2:15</option> <option name="2:30">2:30</option> <option name="2:45">2:45</option> <option name="3:00">3:00</option> <option name="3:15">3:15</option> <option name="3:30">3:30</option> <option name="3:45">3:45</option> <option name="4:00">4:00</option> <option name="4:15">4:15</option> <option name="4:30">4:30</option> <option name="4:45">4:45</option> <option name="5:00">5:00</option> <option name="5:15">5:15</option> <option name="5:30">5:30</option> <option name="5:45">5:45</option> <option name="6:00">6:00</option> <option name="6:15">6:15</option> <option name="6:30">6:30</option> <option name="6:45">6:45</option> <option name="7:00">7:00</option> <option name="7:15">7:15</option> <option name="7:30">7:30</option> <option name="7:45">7:45</option> <option name="8:00">8:00</option> <option name="8:15">8:15</option> <option name="8:30">8:30</option> <option name="8:45">8:45</option> <option name="9:00">9:00</option> <option name="9:15">9:15</option> <option name="9:30">9:30</option> <option name="9:45">9:45</option> <option name="10:00">10:00</option> <option name="10:15">10:15</option> <option name="10:30">10:30</option> <option name="10:45">10:45</option> <option name="11:00">11:00</option> <option name="11:15">11:15</option> <option name="11:30">11:30</option> <option name="11:45">11:45</option> <option name="12:00">12:00</option> <option name="12:15">12:15</option> <option name="12:30">12:30</option> <option name="12:45">12:45</option>
After using Beyond Compare to compare the version I was using to the latest version I determined that upgrading this plugin somehow messes with existing events so that the registration e-mails are not being sent, and/or the payment page does not properly display the amount of the event.. I finally had to drop all the tables related to this plugin, delete the plugin completely and re-install.
This worked out better as I needed to restore all my customizations anyway (I prefer the changes I made to the payment page and I added in the ability to set more flexible start/end event times..) However, I am concerned about updates on a go forward basis.. Site goes live this weekend, so I will have to come up with a go forward contingency plan in the event of a plugin upgrade….