weirdrubikscube
Forum Replies Created
-
Forum: Plugins
In reply to: [Read More Inline] how to prevent from going to the post page ?well it works for me. the read more text appears and the page wont go to the post url.
Forum: Plugins
In reply to: [Read More Inline] how to prevent from going to the post page ?with javascript
var $j = jQuery.noConflict(); $j('document').ready(function(){ $j('.readmoreinline').hide(); $j('.more-link').click(function(e){ e.preventDefault(); $j('.readmoreinline').toggle(); }); });
Forum: Plugins
In reply to: [Read More Inline] how to prevent from going to the post page ?never mind, I’ve made it happen
Forum: Plugins
In reply to: [Tools for Twitter] TW to WP Title w/o urlI’ll be interested to know if there is a way to exclude the url too
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Add two players to the same page?will the option be available in future updates ?
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Add two players to the same page?I was going to purchase this plug-in but now that I know I can’t have 2 players in a same page, I will wait an update to make my purchase.
this said, what if I have a page displaying recenter posts (such as a blog page) and each post has a player inside, would all the players display properly in the blog page ?
ha I see!
thank for your quick reply ??
Forum: Fixing WordPress
In reply to: images not resizing anymoreI fixed the 2390 and 2399 in overwritting the query.php as indicated there: https://www.ads-software.com/support/topic/error-message-when-i-click-on-media-in-admin?replies=31#post-2134764
as for thumbnails and size generation of an image I had to install GD library and it’s now fixed!
https://www.chiaocheng.com/blog/2009/06/wordpress-thumbnail-generation-disabled/
thanks for the help nobody ??
Forum: Plugins
In reply to: [FancyBox for WordPress] adding descriptive text to title barI’d like to know how to do that as well
Forum: Fixing WordPress
In reply to: Private Post 'next_post_link' doesn't workI’m having the same issue
has anyone a solution ?
Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] set the icons on the rightI actually copied wp-dtree.js into wp-dtree.min.js so I could edit it more easily
I still have no idea how I can put the icons on the right in wp-dtree.php
can’t you just give me a clue ???
Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] set the icons on the rightI absolutely do not see where in the php file I can set the img after the link in a dtNode div
to me it seems it can only be changed in the js file around line 194
but just moving the code between lines 197-203
if(this.config.useIcons){ if(!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node); if(!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node; if(this.root.id != node.pid){ str += '<img id="i' + this._objName + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />'; } }
after line 224 (just before
str += ' </div>';
) doesn’t seem to do anything… I’m lost hereplease advise
Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] set the icons on the rightthanks for the clear up !
which php file should I try to modify ?
Forum: Plugins
In reply to: [Advanced Editor Tools] WP 3.2.1 TinyMCE-Advanced 3.4.2.1 = BROKENsame issue here
I have WP 3.2.1 and TinyMCE-Advanced 3.4.2.1
and TinyMCE is my only active plug-in !
Forum: Fixing WordPress
In reply to: display list of posts by tag (or category)ok so i found the hiccup
wordpress would display my private posts only if there is at least 1 public post published in the same category as the private post
so I just needed to set hide_empty and that’s it !
$cat_args=array( 'orderby' => 'name', 'hide_empty' => 0, 'order' => 'ASC' ); $categories=get_categories($cat_args);
hope it could help someone else