bmpavel
Forum Replies Created
-
We figured it out on our end. When updating the plugins somehow our permissions got reset. We moved the plugins folder, which deactivated all the plugins, and then replaced it. This is per my IT guy. Anyway, the settings options are now appearing back in the toolbar drop menu.
I am having a similar issue in Divi where I also only see the thumbnail images with the “NextGen Click to Edit” text. After some troubleshooting I realized that I am using a blog module on the same page which seems to be the problem. If the module pulls any blogs the gallery doesn’t work. If I disable the blog module, the gallery works. Still can’t figure out why the Divi Blog module is causing this to happen.
Forum: Plugins
In reply to: [Contact Form 7] CF7 w attachment error only on PC browsersThanks Jason. I’ll look into that. But after some more editing in CF7 I seemed to have fixed the issue. Not sure exactly what it was. I’m guessing a typo as I completely replaced the attachment code, tho I’d done that before.
Forum: Plugins
In reply to: [Contact Form 7] file limit is not being setupdate: just installed and tested on another of my sites which is hosted on godaddy and was able to send a 3mb mp4 no problem. So this would seem to limit the error to my sites hosted on ipower. Just wish I could figure out what the issue is.
After spending six hours troubleshooting I finally deactivated the plugin, deleted it, and reinstalled the older version, which I luckily still had on my drive. It still doesn’t fix the issue with the new version but at least I have my gallery back up and working again.
The same thing is happening to me. I followed your advice to Save the options, but no luck. Checked the error log and see ‘no such file or directory’ but relating to a different plugin. Shut off all the plugins and tested but still not working. Anyone have an idea what the issue could be??
Forum: Plugins
In reply to: [WP Supersized] [Plugin: WP Supersized] Move thumb-tray upView the dev page at http://www.omniautomotiveadvertising.com/dev-barry/portfolio/
Forum: Themes and Templates
In reply to: Loop for multiple catagorie recent postsHere is the code I used to modify the Kubrick theme to give me part of what I am looking for
<?php $my_query = new WP_Query('category_name=breakingsports&showposts=1'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID;?> <!-- Do stuff... --> <?php endwhile; ?> <!-- Do other stuff... --> <!-- Want to add 2nd single Category post here... --> <!-- Do other stuff... --> <div class="mainTsdContent"> <div class="goldBtmBorder"> <span class="titleBar">RECENT STORIES</span> </div> <?php if (have_posts()) : while (have_posts()) : the_post(); if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?> <!-- Do stuff... --> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?>If I duplicate the first query
while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID;?>It duplicates the selected category posts into the third section.
Any thoughts?
Forum: Fixing WordPress
In reply to: Upload image problem helpI believe I had this problem once. I think you need to create the uploads folder in the wp-content directory if it is not there already. Also, you need to make sure the permissions are set to 777.