Marko Jakic
Forum Replies Created
-
Forum: Reviews
In reply to: [Awesome Sticky Header by DevCanyon] Very usefulThanks for the review, it means a lot.
There will be lot more additions, stay tuned! ??
Forum: Reviews
In reply to: [Proxy Cache Purge] Working fineYeah I’m well aware of it, but I’m not doing manual copy of plugin, rather through composer when doing deployment. Anyway.. not a big deal ??
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Events by hourHi roblagatta, thanks but I did it this way: created custom page template and did custom loop with post_type=’tribe_events’ and point to page like /mypage/?hour=12am. This GET parameter use in loop too, using meta_query argument with key=’_EventStartDate’ and value=mytime and compare=’LIKE’.
Hope you approve it ??Forum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Logged as adminGreat! Code is exactly what I was looking for. So basically we can just delete straight from database too.
Also I figured what was happening right after I started this thread and what you wrote – when I first logged on to my fresh WP installation I was logged to Facebook too, so it synced automatically accounts and I couldn’t test users.
Actually I could with making fake account on FB and use it for testing (perhaps) but that’s a hassle..Thanks!
This is what I’m searching solution for..
I think you can’t have post type called ‘news’ and page name is also ‘news’ – then pagination won’t work. It’s something about url rewrite, so WP can’t differentiate those two.
So, either call that post type like ‘news-post’ and page ‘news’ or page ‘news-page’ and post leave ‘news’
This problem bothers me for a while now..
Forum: Fixing WordPress
In reply to: Comment Template on Author PageSorry for bumping, but I really need to know whether is it possible ??
Anyone?Forum: Fixing WordPress
In reply to: Comment Template on Author PageOk here’s my code:
$args = array( 'posts_per_page' => 1, 'author_name' => $curauth->user_nicename ); $temp = $wp_query; $wp_query = null; $wp_query = new WP_Query($args); ?> <?php if( have_posts() ) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <h4><?php the_title(); ?></h4> <?php the_content(); ?> <?php endwhile; ?> <?php comments_template(); ?> <?php endif; ?>
And I’m not getting comment template. On single.php it does appear.
Ideas?If anyone is still looking for solution, try deleting users from _signups (wp_signups) table
Forum: Fixing WordPress
In reply to: Can pages and posts have same root?Just to add, this is similar logic as subpages, only it is posts (custom or regular)
Forum: Fixing WordPress
In reply to: How to archive monthly or yearly custom post types?Thanks for the info, it helped getting the archives list, by month!
But template is just not working.. I have the file but it redirects to home page..
Any clue?
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Stars not showingIt seems that sometimes maybe not all css files are included
I had to manually include rating.css
So, now I have two css files:
gdsr.css
rating.cssFind in gdsr plugin folder rating.css and load it and that could be it
and one js file:
gdsr.jsload jquery before of course..
Or just make a custom link and add “index.php” in the URL field and “Home” in the Label field ??
I search for this issue, came to this and just would like to add that I used what andreigusan said, but this is VERY strange: Chrome is not showing anchor of the first (home) custom item ?? Actually it generates double custom list item, one with and one WITHOUT anchor. If anyone could try this, and report the possible Chrome issue
Forum: Fixing WordPress
In reply to: Post Relations Meta DataI guess will have to make custom table in database for this, maybe extending posts-to-posts plugin, or read using $wpdb completely customized
Forum: Fixing WordPress
In reply to: Post Relations Meta DataSomething like,
product1 – price1,qunatity1,url1,shipping1 – store1
product1 – price2,qunatity2,url2,shipping2 – store2
product2 – price3,qunatity3,url3,shipping3 – store1
product2 – price4,qunatity4,url4,shipping4 – store2
…Forum: Fixing WordPress
In reply to: Post Relations Meta DataIt is not just the price, but more stuff like, quantity, shipping , url, etc etc
So, if custom fields, then would have for one store n fields. Product is in several stores, so (number of fields) = (number of stores) x (n)
Too much I guess, and hassle for end-user management..