orgnsm
Forum Replies Created
-
Cheers, thank you for building this connection between WP and flexslider and updating the doc.
Also, in case anyone is interested: I made the captions animate in and out by editing flexslider.js in the following way:
jQuery(window).load(function(){ jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container", slideshowSpeed: 8000, before: function(slider){ var currentSlide = slider.slides.eq(slider.currentSlide); jQuery(currentSlide).find('.flex-caption').animate({'opacity':'0','right':'30px'},500); }, after: function(slider){ var currentSlide = slider.slides.eq(slider.currentSlide); jQuery(currentSlide).find('.flex-caption').animate({'opacity':'1','right':'0'},700); }, start: function(slider){ var currentSlide = slider.slides.eq(slider.currentSlide); jQuery(currentSlide).find('.flex-caption').animate({'opacity':'1','right':'0'},900); }, } ); } );… something like that could be a feature for the plugin in the future.
checking out the plugin PHP I was able to discover that lowercase is needed “post title” to trigger it. could maybe be more specific in the documentation. thanks though, works great.
it’s not a CSS bug because viewing source doesn’t show any captions in the slider elements. i’ve also tried “title” and “post_title” as the values for show_caption. according to the plugin doc any value other than “none” will show titles…
i used the shortcode instead of the above function to solve this.
#1 worked, thank you for your time
i noticed also that you can still access the Discussion settings with the plugin enabled even though it’s not in the admin menu ( at /wp-admin/options-discussion.php )
thank you for your time KTS! was able to find their pro acct info and it’s all good now, cheers
that fixed it, i apologize for not reading through all the docs and things before posting, just kinda jumped into a site i was unfamiliar with and things started acting up. thanks very much for the quick and helpful responses!
that seemed to get rid of the double buttons but still takes me straight to the checkout page
am i missing something in my shortcode? – [purchase_link id=”9″ text=”Buy” color=”red”]
also sometimes when the page loads it shows both the checkout and the add to cart buttons at the same time, seemingly randomly.
this frustrated me so much and i couldn’t find anything comparable that i wrote my own tiny php calendar, thanks, byes
it seems to be limiting the number of posts to 10 per month, maybe, perhaps, i am really not quite sure about this. surprising i seem to be the only one seeing this. using a fresh install of the plugin
Forum: Plugins
In reply to: [WP FullCalendar] limit to one categoryjust read that you can also select in a shortcode:
[fullcalendar type=”post” category=”3″]
Forum: Plugins
In reply to: [WP FullCalendar] limit to one categoryyou can go into your editor at:
/wp-admin/plugin-editor.php?file=wp-fullcalendar/wp-fullcalendar.phpand (after the line “//sort out args”) add:
$_REQUEST[‘category’] = 3;where 3 is the id of the category you want to select…
works for meForum: Plugins
In reply to: [WP FullCalendar] limit to one categoryi was curious about this too.. i realize it is a feature of this calendar to expose category selection to the user, but i would like to bypass that and restrict all my calendar items to a certain category.. i think there is a way to edit the code and add this restriction to the SQL query. i’ll post here if i am able to figure anything out.