mriffey
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Domain Mapping leads to login pageInstalled WP Multisite SSO. Worked perfectly, no longer have to login twice.
Forum: Networking WordPress
In reply to: Not logging out correctlyIt was cookies. I cleared them from my browser and then logged back in, and logging out works just fine now. It signs me out of all 3.
Forum: Plugins
In reply to: [CM Download Manager - Document and File Management] Can't upload screenshotThanks, I sent the wordpress information/issue via the contact us form.
Forum: Plugins
In reply to: [DsgnWrks Importer for Instagram] Set default Image display size for a postOr you can always set the insta-image class to set the size in CSS instead.
Forum: Plugins
In reply to: [CM Download Manager - Document and File Management] Can't upload screenshotCan I submit the information in the Basic Support for Pro Plugins form, or just in the contact area?
And what information is needed? Just my wordpress information or my ftp and wordpress?
Forum: Plugins
In reply to: [CM Download Manager - Document and File Management] Can't upload screenshotI have 1.5.5 installed, which is the newest version and it still doesn’t work.
Forum: Fixing WordPress
In reply to: Listing parent and child on pagesThis is how you do it and change the depth.
Forum: Fixing WordPress
In reply to: Can't Export – Already increased limitResolved. The issue is with the upgrades (as something isn’t getting transferred over correctly). I deleted all the files after I had backed everything up in two xml files (posts, pages separately), deleted all wordpress files and installed the newest wordpress installation. Imported the xml files, and was able to export as one file.
Also did a test site of wordpress (clean install) and the export was just fine.
Just make sure to back-up all of your files first (copy your entire current wordpress directory), so you won’t lose all of your plugins and themes. Then once the new installation is installed, you can copy the plugins and themes folder into the new one and either merge or replace and just activate/switch.
Forum: Fixing WordPress
In reply to: Can't Export – Already increased limitI also attempted to increase the limit in wordpress as well, still no luck.
If I do a fresh installation and upload what i had downloaded separately into the new wordpress then try to export it as one file, it works fine. The only thing I can think of is that it has something to do with the wordpress upgrades, so I am backing up my wp-admin folder and replacing it with a fresh copy to see if that works.
Forum: Plugins
In reply to: [Simple Lightbox] Images stretched in lightboxI ended up switching to WP Lightbox 2, but it is definitely the plugin. The new plugin works perfectly.
Forum: Fixing WordPress
In reply to: WordPress pages will not updateRESOLVED
Issue was the database itself. Somehow between wordpress and me trying to update the page (and it not updating), the data was corrupted so I had to repair the database in PHPMyAdmin.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Adding permanent link to captionThank you!!!! That would be awesome!
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Adding permanent link to captionI apologize, what I had wanted to do was create a download link for the lightbox so that when you are in the lightbox and viewing the images, you can just click download from where the description would normally be and download the image automatically to your computer (without it opening in a new link).
I can get the download automatically part down, but I can’t seem to find out where to place the link for it to appear in the lightbox (when displayed).
Forum: Fixing WordPress
In reply to: Displaying Default Tag Image… Figured it out. Combined what I saw in another posting to this.
This is for people who want to display images as tags; but if there are no tags, display text stating that.
Final Code:
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo '<img src="Your Image URL Where Tag Images' . $tag->term_id . 'file extension" alt="' . $tag->name . '" />'; } ?> <?php } else { ?> <p class="tags">No Tags Found</p> <?php } ?>
Forum: Fixing WordPress
In reply to: Displaying Pages<ul style="list-style-type: none"> <?php wp_list_pages( 'child_of=IDHERE&title_li=&depth=3'); ?> </ul>