yedidel
Forum Replies Created
-
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Search performance is slowok found the issue. Disabled “ACF Better Search” plugin
Forum: Plugins
In reply to: [AddToAny Share Buttons] Unchecking "Show sharing buttons" does not workForum: Plugins
In reply to: [WordPress Social Login] Include custom field in registrationNo… I just built a “step 2” registration details form after the social login
Forum: Plugins
In reply to: [Resize Image After Upload] Works only with admin role?Hi,
I am having the same problem. This does not have anything to do with memory since admin role runs a log more operation than editor role. Also increasing memory for PHP didn’t change anything.
It seems there is a bug that blocks the resizing when not logged in as administrator
Forum: Fixing WordPress
In reply to: filter media by page/post it is attachedThis is how we did it
add_action('admin_head-media-upload-popup','wmg_add_my_media_button'); function wmg_add_my_media_button(){ $args = array( 'numberposts' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_type' => array('post','page'), 'post_status' => 'publish' ); $posts_array = get_posts( $args ); if($_GET['tab']=='library'){ add_filter('pre_get_posts','wmg_my_search_filter'); function wmg_my_search_filter($wp_query) { $wp_query->query_vars['post_parent'] = $_GET['filter_post']; return $wp_query; } } ?> <script type="text/javascript" > jQuery(document).ready(function(){ jQuery('select[name=m]').after( "<select name='filter_post' style='width: 93px;'><option value='' selected='selected'>-??? ????-</option><?php foreach($posts_array as $one_post){ echo "<option value=".$one_post->ID.">".addslashes($one_post->post_title)."</option>"; }?></select>"); }); </script> <?php } ?> <style> #media-upload .tablenav .tablenav-pages{ width: 190px; } </style>
Forum: Everything else WordPress
In reply to: Permalinks & Test StrategiesI am too struggling with this problem.
I will add and say – DB Data is not just content. DB data includes configuration settings, permalinks, and plugin data (for example form configuration, widget settings etc), so it’s really required on a test environment.
Today I am using a HOSTS file to switch back and forth between test and production. Problem is, let’s say I want to show the client the site, I need to make him edit his HOSTS file which isn’t always an option.
I’ve been looking for a Proxy server script that can emulate HOSTS file behavior online, which then I can send a link to users. Does someone know such an application/service?
Forum: Fixing WordPress
In reply to: Severe speed problem on WordPressVPS specs:
1 Instance, 1 CPU 2.7GHz, 2GB Memory. 3,350 Visits per week. There is no other site running on this VPS
Didn’t touch any of the config files.
Anyway, tried on another server and the same problem.Problem still goes on with any theme also Twenty Eleven and all plugins turned off.
I develop a lot of WordPress sites with plugins and custom themes… never
had this problem… don’t know where to start looking.Forum: Plugins
In reply to: Media Categories 2 – not saving correctly when two categories with same nameThanks.
Anyway – it happened to me when I chose only one, and when saving it reassigned to the other, not when I chose both.Forum: Plugins
In reply to: Media Categories 2 – not saving correctly when two categories with same nameanything new?
Forum: Plugins
In reply to: Media Categories 2 – not saving correctly when two categories with same nameNo, I am using it out of the box.
Forum: Fixing WordPress
In reply to: Sub Menus Not WorkingIt seems like all css is built wrong…
I think best option is to contact the theme creator or where you bought it from.
Also try to install theme from scratch and see if it workdsForum: Fixing WordPress
In reply to: Sub Menus Not WorkingForum: Fixing WordPress
In reply to: Sub Menus Not Workinghmmm… Looks ok ??
I think without looking at the code I can’t find the problem
Forum: Fixing WordPress
In reply to: Sub Menus Not WorkingI can’t see the sub-menu working on the theme Live Preview either, so it’s hard to compare the CSS involved.
Can you post a screenshot of your Appearance -> Menus screen?
Forum: Fixing WordPress
In reply to: Sub Menus Not WorkingWhat theme is this? does it support sub-menus?