milauskas
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] Not getting things to work (calendar doesn't load)Forgot to ask, can I copy and past my script.js here?
Forum: Plugins
In reply to: [Event Organiser] Not getting things to work (calendar doesn't load)Okay. Thanks!
Yes, this is a theme I built (I used Artisteer and customized it).
BTW I did see the swf object thing in Chrome Dev Tools but I didn’t know what to make of it.
I’ll take a look at scripts.js. I see the ….<?php echo get_bloginfo(‘template_url’)…. are you saying replace it with this?
….<?php wp_localise_script()….
Forgive my limited php.
Forum: Plugins
In reply to: [Event Organiser] Number of recurring events on event page?I think I duplicated a template in my theme to use as the single page template for EO. If you have a chance could you look at: https://encinochamber.org/events/venues/monterey-at-encino/
If I uncheck Enable Templates then the Venue page doesn’t look all whacky like it does now, but I lose the venue map at the top.
But… I lose the venu info and map on the indiv. event pages.
I’ve deleted the dupe file I had in my theme folder as a template (I don’t think it made a difference, it seems to be only the Enable Templates checkbox).
Forum: Plugins
In reply to: [Event Organiser] Number of recurring events on event page?I don’t think I copied that template. I’ve only copied one (can’t remember which one), but if things get lost on update I’ll know where to look.
I’m learning as I go.
Forum: Plugins
In reply to: [Event Organiser] Not getting things to work (calendar doesn't load)Sure, it’s https://encinochamber.org/events/events-calendar/
All the other things seem to be working (e.g., widget in sidebar, individual event pages, etc.)
Forum: Plugins
In reply to: [Event Organiser] Number of recurring events on event page?Well I kind of found a workaround myself. Here’s what I did:
In event-meta-event-single.php I found this code on line 76:
<?php if( eo_reoccurs() ){
//Event reoccurs – display dates.
$upcoming = new WP_Query(array(
‘post_type’=>’event’,
‘event_start_after’ => ‘today’,
‘posts_per_page’ => 2,
// mine: was -1 for infinite so showed all future events. I limited it to 2
‘event_series’ => get_the_ID(),
‘group_events_by’=>’occurrence’//Don’t group by series
));Like I wrote in the comment, I changed the -1 to a 2 and now only 2 future recurring events show on the page.
Forum: Plugins
In reply to: [Event Organiser] Not getting things to work (calendar doesn't load)I don’t know what to look for as far as the AJAX response in my browser’s console. Sorry, I’ve never done that. I’ve only looked at the HTML in Firebug.
I did swap out my theme for Twenty Twelve and the calendar showed up, but I don’t know what I’d be looking for in my files.
At least I’m getting closer.
Forum: Plugins
In reply to: [YAK for WordPress] YAK For WordPress CheckOut ErrorOkay, it must be a plugin conflict. I did have all plugins except YAK and Yak for Auth.net deactivated. I forgot that I reactivated them. I guess I need to go through them one by one to eliminate the offender(s).
Forum: Plugins
In reply to: [YAK for WordPress] YAK For WordPress CheckOut ErrorWell, it WAS working. I’ve been trying to add product options (which resulted in a “Cart empty” message at checkout (although I had selected a product) so when I deleted the multiselect option and went to checkout again, it DID go to the COnfirm Order page, but under Order Details I see this:
Fatal error: main() [function.main]: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "YakItem" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in /home/content/43/8283643/html/encino/wp-content/plugins/yak-for-wordpress/yak-view-confirm.php on line 102
Also getting the same on clicking add to cart:
Fatal error: main() [function.main]: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "YakItem" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in /home/content/43/8283643/html/encino/wp-content/plugins/yak-for-wordpress/yak-view-cart.php on line 81
Forum: Plugins
In reply to: [YAK for WordPress] YAK For WordPress CheckOut ErrorNot sure about the number now, but I’m not getting it anymore. I think I had the wrong checkout page selected. I had another plugin before that used a checkout page and I think I had that selected as the page to go to after buying. I since changed that to the automatically created checkout page for YAK and it’s working.
Forum: Plugins
In reply to: [YAK for WordPress] YAK For WordPress CheckOut ErrorHi,
I just installed the plugin today and I’m having some trouble, too, including the above error. I’ve got the latest version of the plugin and I disabled all other plugins.
Forum: Plugins
In reply to: Add New Plugin-No Plugins Match Your Request!!!Me too. I’m glad to see I’m not the only one having this problem. I had to download and install a plugin manually.
Forum: Fixing WordPress
In reply to: Put line breaks in site slogan?SOrry, I should have used code for the stuff under “what I’d like is:”
e.g.,
Buying and Selling Rare Coins <br />Precious Metals, Jewelry <br />818-xxx-xxxx
Forum: Fixing WordPress
In reply to: Put line breaks in site slogan?Hi Esmi,
I’m not sure what I’d do to the css (except maybe limit the width–but that won’t guarantee that a line breaks where I want it to).
Just so I’m clear, in Settings>General>Tagline I have something like this:
Buying and Selling Rare Coins, Precious Metals, Jewelry 818-xxx-xxxx
What I’d like is:
Buying and Selling Rare Coins
Precious Metals, Jewelry
818-xxx-xxxxSo that it shows up on the page like:
Buying and Selling Rare Coins
Precious Metals
Jewelry 818-xxx-xxxxForum: Fixing WordPress
In reply to: Hide custom field name?It worked! Thank you so much. I’m still not very good with PHP.
You really saved me a lot of grief!