borantula
Forum Replies Created
-
Forum: Plugins
In reply to: [Clean WP Admin Menu] Fatal Error Cannot Activate?Hello,
May I ask the php and WP version you are using? Thank you.
Forum: Plugins
In reply to: [Clean WP Admin Menu] Multisite?Hello,
Works fine if you set the settings per site, but it doesn’t have network-wide settings yet. It’s in my to do list.
Thanks
BoraForum: Plugins
In reply to: Pods – Customized Where Dynamic Values for RelationshipsI also shot a video to show’n’tell what I’m trying to achieve.
https://www.dropbox.com/s/2xw4u1089do5yum/pods-booktype.mp4?dl=0
Forum: Plugins
In reply to: Fatal error: Call to undefined function get_avatar_url() in pluggable.phpI got the same error on a local copy of a site I’m working on.
I completely deleted wordpress files except wp-content and wp-config folder (wp-admin, wp-includes, .php files in the root etc.). I replaced them with the fresh ones and it’s working again. Hope this helps.
Forum: Hacks
In reply to: Media Uploader Default ViewI’ve seen this answer, it works as a dom manipulation trick, but not really a fundamental fix I’ve been looking for. But when necessary can be used till there’s a core solution for this.
Forum: Reviews
In reply to: [Intuitive Custom Post Order] not working with hierarchical post typesI’ll check it.
Thanks
Forum: Fixing WordPress
In reply to: [INDEX] Custom queries & DISQUS Seems not to workOK got it!
For those who may encounter:
After the custom query I added two reseting functions and voilawp_reset_query();
wp_reset_postdata();Forum: Fixing WordPress
In reply to: [INDEX] Custom queries & DISQUS Seems not to worki have the same problem you are not alone.
the problem with the site I’m working on is like this:
I have a CPT books. In the single-books page there is another loop showing others books of the same writer. even though I use $my_new_loop->have_posts() syntax it detects it as the main query or something.
I looked at the disqus source and I think it has got something with “loop_end” action they useI’m working on this, I’ll let you know if I manage to solve (by the way haev you solved it since)
Forum: Requests and Feedback
In reply to: New media upload window could be improvedI agree, the default for library should be uploaded to this post, not all of the images in my gallery. I’m also getting feedback from customers that its a bit confusing. They upload new images for a new post and the suddenly see all of their images, irrelevant to the post.
other than that, new media is great and fast as hell. thanks
Forum: Fixing WordPress
In reply to: Change upload directory for wp_handle_uploadok, solved it!
found a solution in this site
https://yoast.com/smarter-upload-handling-wp-plugins/(they forgot t in the function, be careful while copying)
Forum: Fixing WordPress
In reply to: Problem with the excerptcan you give more clue
write the loop part of the category page maybeForum: Themes and Templates
In reply to: Page and Posts in the Loopmaybe there are plugins for that, which does showing the category posts with a shortcode. you should look for that
by the way creating different page templates and using custom loops is a part of wordpress but its your choise.
Forum: Fixing WordPress
In reply to: Limit Character Count in the_content; keep MORE linkyou can add it manually as html to the $content variable at the end of the function as if its excerpt
Forum: Fixing WordPress
In reply to: Nivo Slider Problemsnormally plugin takes care of that but in your case css appears but javascript is not.
in one of my sites where i use nivo i put it under theme folder. put it somewhere before wp_head() function in header.php in your theme.
than check source code of the page and be sure the nivo.sliderpack.js is coming after jquery.
example code.
<script type="text/javascript" src="https://www.yoururl.com/wp-content/themes/toolbox/jquery.nivo.slider.pack.js"></script>
and btw top navigation seems weird? I think it needs a little tidying up the original theme
Forum: Fixing WordPress
In reply to: how to use custom taxonomies in query_posts<?php $myproducts=array( 'post_type'=>'post', 'product-categories' => 'bubblegums' ); ?> <?php query_posts($myproducts); ?> //and the loop comes next