Faramarz
Forum Replies Created
-
I just realized clicking the menu icon isn’t also working when the window is resized and the button is clicked, but when I disable the jQuery I had included in my functions.php then WordPress built-in jQuery loads and the click on responsive icon works and the menu shows up.
My old jQuery version was 1.8.2 and looks like the latest built-in version is 1.11.1.
Now the menu shows up but my photo slider is still not working.
Forum: Plugins
In reply to: [Bulk Delete] Delete users goes to blank screeenSudar,
No errors in error log whatsoever. I increased the memory to 2048 but I am still getting the white blank page. By the way, I am not trying to delete users. I am trying to get rid of my posts only.
Any idea how to fix this?
Thanks
Forum: Plugins
In reply to: [Bulk Delete] Delete users goes to blank screeenSudar,
In my php.ini my memory limit is: “memory_limit = 1024M” but I am still getting the white blank page. You think I should increase it to a greater number?
Going to check my php error log now.
Thanks
Forum: Plugins
In reply to: [Bulk Delete] Delete users goes to blank screeenI have 80,000 posts (generated by wp-o-matic) when I try to bulk delete them, I get a white blank page as well.
Is it possible to fix this issue by increasing the memory size in php.ini?
Thanks
@subhansanjaya Thanks for this plugin. You said the plugin is updated to support post types. I have a custom post type (created with Custom Post Type UI plugin) and some custom fields (created by Advanced Custom Fields plugin.)
Is it possible to display the thumbnail of my ‘speakers’ headshot along with their title and company name with this plugin? All these three fields are custom fields of the custom post type ‘speakers’.
Thanks in advance.
Thanks Mekku,
Is there a way to see the add-on in action before purchasing it? Any YouTube video or screenshot would be helpful?
Thanks
Forum: Fixing WordPress
In reply to: How to show specific post type posts?Ov3rfly, YES that is exactly what I was looking for.
Thank you!
Forum: Fixing WordPress
In reply to: How to show specific post type posts?Thanks but ‘Featured Authors’ has nothing to do with my scenario. What I am looking is a custom query to show those custom post types that are checked as ‘Featured’.
Forum: Fixing WordPress
In reply to: Hyperlinking with the_permalink(); in custom post typesI got it:
<?php $args = array( 'post_type' => 'speakers', 'posts_per_page' => 100, 'orderby' => 'title', 'order' => 'ASC' ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); echo '<div class="entry-content">'; echo '<a href="' . get_permalink() . '">'; the_title(); echo '</a>'; echo '</div>'; endwhile; ?>Forum: Plugins
In reply to: [Ultimate Coming Soon Page] Prevent customers from viewing websiteI want to the same. I want the plugin to prevent everyone else from viewing the website but I want me and my colleagues (in the same office within same IP address) be able to view the website.
Is it possible to restrict/allow by IP address?
Thanks
Forum: Networking WordPress
In reply to: New site cannot be found even after adding a wildcardUpdate: I figured out what the problem was. When I created a Wildcard, my hosting cPanel (Bluehost) adds the word ‘Wildcard’ to the end of my document root, so my document root was /public_html/Wildcard. I changed it to /public_html and that fixed the subdomain issue. Now http://community.example.com/ is accessible via admin and browser 🙂 .
I read somewhere about installing the Domain Mapping plugin, I guess I don’t need to install that plugin, and I am not sure what exactly that plugin does.
Thanks
Forum: Plugins
In reply to: [Len Slider] Cannot change skinsIgor,
I did this test and looks like glob exists on server.. what else could be the problem?
Forum: Plugins
In reply to: [Len Slider] Cannot change skinsHi,
I have the same problem with the plugin. It works on XAMPP but on the live site I cannot select any skins. The only available skin is ‘default’ skin. How can I check to see if the glob function is enabled? I looked at my php.ini but didn’t find anything. I am using PHP 5.4.
Does enabling any of the extensions below help?
Http
Imagick
Magick Wand
Mail Parse
OAuth
OCI8
Upload Progress
IonCube
SourceGuardianThanks,
MarzForum: Plugins
In reply to: [Plugin: flickrRSS] No images with 2.7Guys,
I disabled the “Enable the image cache” check box and my problem is fixed. That means I’m using this plug-in with WordPress 2.7 without any problems.Thanks,
FaramarzForum: Plugins
In reply to: [Plugin: flickrRSS] No images with 2.7I am ABLE to see my images using get_flickrRSS() function, but this function only works on my home page. If I click on any of my posts or pages the I see broken images, I can still see the image titles but not the images. Is there any fix for this?
Thanks,
Faramarz