Title: Marko Jakic's Replies - page 3 | WordPress.org

---

# Marko Jakic

  [  ](https://wordpress.org/support/users/markzero/)

 *   [Profile](https://wordpress.org/support/users/markzero/)
 *   [Topics Started](https://wordpress.org/support/users/markzero/topics/)
 *   [Replies Created](https://wordpress.org/support/users/markzero/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/markzero/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/markzero/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/markzero/engagements/)
 *   [Favorites](https://wordpress.org/support/users/markzero/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 50 total)

[←](https://wordpress.org/support/users/markzero/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/markzero/replies/?output_format=md) [2](https://wordpress.org/support/users/markzero/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/markzero/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/markzero/replies/page/4/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Awesome Sticky Header by DevCanyon] Very useful](https://wordpress.org/support/topic/very-useful-647/)
 *  Plugin Author [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/very-useful-647/#post-7986215)
 * Thanks for the review, it means a lot.
 * There will be lot more additions, stay tuned! 😉
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Proxy Cache Purge] Working fine](https://wordpress.org/support/topic/working-fine-20/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/working-fine-20/#post-7835684)
 * Yeah 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] [Plugin: The Events Calendar] Events by hour](https://wordpress.org/support/topic/plugin-the-events-calendar-events-by-hour/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-the-events-calendar-events-by-hour/#post-2817207)
 * Hi 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Logged as admin](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logged-as-admin/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logged-as-admin/#post-2284877)
 * Great! 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!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Listing custom post types in a page template – pagination returns 404?](https://wordpress.org/support/topic/listing-custom-post-types-in-a-page-template-pagination-returns-404/)
 *  [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/listing-custom-post-types-in-a-page-template-pagination-returns-404/#post-1991588)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comment Template on Author Page](https://wordpress.org/support/topic/comment-template-on-author-page/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/comment-template-on-author-page/#post-1992127)
 * Sorry for bumping, but I really need to know whether is it possible ??
    Anyone?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comment Template on Author Page](https://wordpress.org/support/topic/comment-template-on-author-page/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/comment-template-on-author-page/#post-1991986)
 * Ok 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?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Signup Problems with re-using usernames that were deleted previously](https://wordpress.org/support/topic/signup-problems-with-re-using-usernames-that-were-deleted-previously/)
 *  [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/signup-problems-with-re-using-usernames-that-were-deleted-previously/#post-1636511)
 * If anyone is still looking for solution, try deleting users from _signups (wp_signups)
   table
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can pages and posts have same root?](https://wordpress.org/support/topic/can-pages-and-posts-have-same-root/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/can-pages-and-posts-have-same-root/#post-1946265)
 * Just to add, this is similar logic as subpages, only it is posts (custom or regular)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to archive monthly or yearly custom post types?](https://wordpress.org/support/topic/how-to-archive-monthly-or-yearly-custom-post-types/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/how-to-archive-monthly-or-yearly-custom-post-types/#post-1945028)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GD Star Rating] [Plugin: GD Star Rating] Stars not showing](https://wordpress.org/support/topic/plugin-gd-star-rating-stars-not-showing-1/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-gd-star-rating-stars-not-showing-1/#post-1789778)
 * It 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.css
 * Find in gdsr plugin folder rating.css and load it and that could be it
 * and one js file:
    gdsr.js
 * load jquery before of course..
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [No Home link option in wp_nav_menu & no current-menu-item for custom post types](https://wordpress.org/support/topic/no-home-link-option-in-wp_nav_menu-amp-no-current-menu-item-for-custom-post-types/)
 *  [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/no-home-link-option-in-wp_nav_menu-amp-no-current-menu-item-for-custom-post-types/#post-1485656)
 * >  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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post Relations Meta Data](https://wordpress.org/support/topic/post-relations-meta-data/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/post-relations-meta-data/#post-1818429)
 * I 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post Relations Meta Data](https://wordpress.org/support/topic/post-relations-meta-data/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/post-relations-meta-data/#post-1818229)
 * Something 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post Relations Meta Data](https://wordpress.org/support/topic/post-relations-meta-data/)
 *  Thread Starter [Marko Jakic](https://wordpress.org/support/users/markzero/)
 * (@markzero)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/post-relations-meta-data/#post-1818224)
 * It 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..

Viewing 15 replies - 31 through 45 (of 50 total)

[←](https://wordpress.org/support/users/markzero/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/markzero/replies/?output_format=md) [2](https://wordpress.org/support/users/markzero/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/markzero/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/markzero/replies/page/4/?output_format=md)