pixeloco
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change size of featured imageI’ve added the line of code as instructed but could you please elaborate on how exactly to use it in the twig file? Still not sure where to include the custom size information.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Theme changes not updatingNot sure about the original thread author, but I was simply trying to make changes to twig files of my custom theme and none of them were showing up. Turning the cache off has it working.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Theme changes not updatingIn case anyone else has this problem, it has to do with Step 1 of creating a child theme: Turning on Debug Mode. The documentation doesn’t specify what exactly to do, so I had unknowingly not fully executed this step.
You will need to change the true/false values of the following located in app > config > constants.php to the following:
‘AI1EC_DEBUG’, true
‘AI1EC_CACHE’, false
‘AI1EC_DISABLE_FILE_CACHE’, true*changing debug to true doesn’t actually effect the cacheing issue this thread focuses on, though it will spit out all the debugging jargon at the end of your page. obviously.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Theme changes not updatingOkay so I’m having to do this after every single change… I hope there is a better way or this plugin will just be too inefficient to continue using.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Theme changes not updatingThank you pherbio, I was having the same problem and this got it working.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Custom themes not being readAh, so I had already done that but the folder itself was still named gamma… when I changed it to match it appeared for me to select. Thanks!
it does, thank you
Thanks for the input everyone… and yup that does it Nicola I appreciate you passing on a solution so quickly!
Forum: Fixing WordPress
In reply to: Issue with XML-RPC setting IFTTT.comIn your ‘General Settings’ tab, is your ‘WordPress Address (URL)’ different from your ‘Site Address (URL)’? My site lives in a subdirectory so this was the case, and I was getting the same: “Live channel fields value is not a valid WordPress url” message. Found that pointing IFTTT to my INSTALL location rather than the site address solved the problem.
^^i second this request! somehow disable the link on the main image without ruining linking capability for the thumbnails…
THANK YOU…. its working perfectly, exactly what i needed!
same situation here, looking to only protect certain pages
Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Nex / Previouslooking for this same functionality ^^
Forum: Fixing WordPress
In reply to: show children pages on parent hover AND ON parent or child pagewow okay, so simple… i totally overlooked the basics here! for anyone else that might have the same brain fart though, here’s the stripped down CSS solution:
li ul.children { position:absolute; display:none; }
li:hover ul.children { display:block; }
li.current_page_item ul.children, li.current_page_parent ul.children { display:block; }
no short code. you have to use the templates they provide you with… but even those won’t do the trick without some additional manipulation. Vayo’s comment in this post did the trick for me, hope it can help you as well: http://wordpress.org/support/topic/plugin-the-events-calendar-want-to-create-a-page-that-callscontains-calendar-what-code-to-insert?replies=17#post-1773961