mishagos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tracks] Tracks Child Theme CSS not always workingThank you
Forum: Themes and Templates
In reply to: [Renden] Homepage Featured do not show unless logged inApparently this just took a few minutes to update. All good.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] How to set posts_per_page in this theme?Thanks @alchymyth
Forum: Plugins
In reply to: [Event Calendar] Start calendar in specific monthI did this by modifying the defaults in the ajax-event-calendar.php file around line 681 (below). I changed the month and year to set values. I also set the nav and views properties. You may have to redo this if the plugin is updated…
function render_shortcode_calendar($atts) {
extract(shortcode_atts(array(
‘categories’ => ”,
‘excluded’ => 0,
‘filter’ => ‘all’,
‘month’ => 6,//date(‘m’),
‘year’ => 2013,//date(‘Y’),
‘view’ => ‘month’,
‘views’ => ”,//month
‘nav’ => null,//’prev,next, today’,
‘height’ => ”,
‘scroll’ => 0,
‘mini’ => 0
), $atts));Forum: Themes and Templates
In reply to: Adding Title to sidebar blocksActually I guess the real question is by what method or system does WP remove the titles when choosing a “BLOCK” style for the widgets vs. leaving the title in for a POST or SIMPLE TEXT style?
Thanks
Forum: Themes and Templates
In reply to: Adding Title to sidebar blocksThanks, but nope. It’s in the widgets.php file tho.
What decides whether something goes ‘before_title’ or after title? Where are those options located both in the db and in the files? Any ideas folks?
Thank you
Forum: Themes and Templates
In reply to: Adding Title to sidebar blocksYes, for some reason the titles don’t show up, despite having titles in the widgets. That’s what I’m looking for the source of. How do those get generated?
If the sidebar option is to display as Posts, the title and all shows. If as blocks, it’s just the block without the title.
Thanks
Forum: Hacks
In reply to: Checking if an image exists within WP?Thanks. That works for if_exists().
Is it possible to do something like $foo = TEMPLATEPATH.”filename.jpg”;
I’m sure there’s some syntax for that, I just haven’t found it. I’m new to hacking WP, but fine with PHP.