ribbitfrog
Forum Replies Created
-
Forum: Plugins
In reply to: [Glossary] Pages with a list of glossary termsThis would also be really helpful for me too. It would be even better if the shortcode also included a parameter to filter terms by category, and a parameter for sort order (such as ascending/descending).
Forum: Plugins
In reply to: [Quick Featured Images] Suggestion: Set Featured Image based on AuthorGreat! I look forward to the next version.
Forum: Plugins
In reply to: [Public Post Preview] Does not work with custom post typesIf you’re using custom post statuses, then you can add in your custom status by editing this line:
if ( ! in_array( $post->post_status, array( 'draft', 'pending', 'future' ) ) )
and adding your custom statuses to it. Edit Flow creates statuses with multiple words with dashes instead of spaces, so for example “Ready to Publish” and “Under Review” would look like this:
if ( ! in_array( $post->post_status, array( 'draft', 'pending', 'future', 'ready-to-publish', 'under-review' ) ) )
I see this error message too – I’m using Version 1.8.8 on Multisite. I’ve tried network activating it and activating it individually on only one of the network sites. The error only shows up on the WP Avatar Settings page.
Forum: Themes and Templates
In reply to: [Admired] Change "Cotinue reading"It’s in the functions.php file of the Admired theme – look for “// Returns a Continue Reading link for excerpts”… then ( ‘Continue Reading <span….).
Just change “Continue Reading” to change the text ??
Forum: Themes and Templates
In reply to: [Admired] Sidebar – Navigation Menu – Posts1. Edit the CSS – either create a new css file or modify whichever theme you are using. Modify the width of the id #secondary to whatever you want – it is a responsive layout so you might want to set min-width:250px instead of a solid width.
2. Again, edit the CSS. I don’t use the navigation menu so I’m not sure of the exact style, but it should be something like #nav-menu2. Try
text-align: center;
andmargin: 0 auto;
and maybeposition: relative
…otherwise google “center div” and you should be able to find the right styles.3. Post can be limited by number of words, but I’m not sure about characters. To do this, go to the Admired functions.php file and search for $excerpt_length – then change the value.
Forum: Themes and Templates
In reply to: [Admired] The pagination doesn't work at allWhat kind of edits have you made to the pagination? Did you customize it in the Admired Options section? What about on the Settings > Reading page? There may be a conflicting number somewhere. I’ve customized my paging styling and text (in the code) and haven’t had an issue.
It may be a plugin conflict. Have you tried disabling all plugins?
Forum: Themes and Templates
In reply to: [Admired] How to use breadcrumbs?Download the plugin Breadcrumb NavXT (link: Here) and the breadcrumbs will work. Another breadcrumb plugin may work, but I used this one and it works great.
If you want to customize the breadcrumb, like changing what the breadcrumb starts with, the code is in the header.php file under <div class=”breadcrumbs”>.
Forum: Plugins
In reply to: [Subscribe2 Widget Pro] Undefined index in widget-output.phpYes, the open source version.
Forum: Networking WordPress
In reply to: WordPress Multisite on Azure: Issue accessing wp-adminFigured it out – it was the web.config file. If anyone else runs into this, here was the fix that worked for me:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”WordPress Rule 1″ stopProcessing=”true”>
<match url=”^index\.php$” ignoreCase=”false” />
<action type=”None” />
</rule>
<rule name=”WordPress Rule 2″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?files/(.+)” ignoreCase=”false” />
<action type=”Rewrite” url=”wp-includes/ms-files.php?file={R:2}” appendQueryString=”false” />
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?wp-admin$” ignoreCase=”false” />
<action type=”Redirect” url=”{R:1}wp-admin/” redirectType=”Permanent” />
</rule>
<rule name=”WordPress Rule 4″ stopProcessing=”true”><match url=”^” ignoreCase=”false” />
<conditions logicalGrouping=”MatchAny”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” />
</conditions>
<action type=”None” />
</rule>
<rule name=”WordPress Rule 5″ stopProcessing=”true”>
<match url=”(^[_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 6″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 7″ stopProcessing=”true”>
<match url=”.” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>