mcrib
Forum Replies Created
-
Thanks for your response. All of the information is correct in wp-config. The front of the site works fine.
We are on shared hosting.
Forum: Plugins
In reply to: [Slideshow] Caption placement option?I would love to see this option too. Is this something that may be worked in to a later version?
Forum: Plugins
In reply to: [WordPress Gallery Plugin - NextGEN Gallery] Charge $ to upload filesHi rshambaugh. I’m looking for the same thing. Did you find a solution? Thanks!
Forum: Fixing WordPress
In reply to: Gravity Forms Directory exclude fields and search errorLook for this line in directory.php
‘sort’ => ‘date_created’, // Use the input ID ( example: 1.3 or 7 or ip )
Change ‘date_created’ to the input ID of the field you want to sort by.
Forum: Fixing WordPress
In reply to: Moving to SSL page with httpsemptymind – I have the same problem. Did this solution work for you? I tried it and it isn’t working for me. I took a look at your website and saw that you got it fixed. Please tell me how you did it. Thanks.
Forum: Plugins
In reply to: How to enable SSL for a particular pageDid you find an answer to this question? I’m having the same issue.
Forum: Fixing WordPress
In reply to: OHow to only list grandchildren when on their direct parent pageIt may be a good idea to put some checks in here to make sure that the page has children, but this is working for me:
$page = $post->ID;
$children = wp_list_pages(“title_li=&child_of=”.$page.”&echo=0″);
if ($children) {?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>Forum: Fixing WordPress
In reply to: OHow to only list grandchildren when on their direct parent pageI’m trying to do this exact thing. Please let me know if you find a solution. I will do the same.
Thanks