jrm213
Forum Replies Created
-
Mostly because it is troubling to do that. In a site with 3000+ pages it is difficult enough to add/enter new pages because the dropdowns for choosing parent get so large, but if you don’t know exactly where something should go you have to look up the page before and page after to find their positions so that you can leave appropriate space around the new entry.
Also, if you ever end up editing a site someone else set up, they might have done sort-order by 1 and then you are just stuck with no resolution but to re-order 100s to 1000s of pages.
Maybe it’s a niche issue I face. But I have to say that it is quite frustrating and time consuming when running into issues like this.
I feel it would be a beneficial functionality addition for both editing old sites and creating new sites. In a perfect world everybody would do things the same way, in my world, it is always hit or miss.
Forum: Plugins
In reply to: [SSH SFTP Updater Support] Update to version 0.4 doesn't workMany Thanks! That resolved the issue for me.
Forum: Plugins
In reply to: [SSH SFTP Updater Support] Update to version 0.4 doesn't workI am having the same issue with the same line numbers etc…
Forum: Plugins
In reply to: [WooCommerce] What happened to the USPS Shipping Method?I am wondering the same thing, it looks like all the shipping calculators are gone, the links for UPS, USPS, FEDEX all 404 or the download links are just gone.
Download link on these pages gives a 404
https://wcdocs.woothemes.com/user-guide/ups-shipping/
https://wcdocs.woothemes.com/user-guide/usps-shipping/Download link is gone
https://wcdocs.woothemes.com/user-guide/extensions/shipping-methods/fedex/I need this functionality, where did it go?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] [select your-recipient]dang, that is the same thing I was needing – I posted about this a little while ago asking about piped content and using both parts of the piped data.
What do you mean by it doesn’t work…
are you getting an error sending or are you not receiving the email.Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Cannot set default value on radioSorry forgot to edit my copy,
so just use:
[radio ShiftSystem id:shift-system default:1 “Yes” “No”]Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Cannot set default value on radioHi,
You can’t put radio*
[radio* ShiftSystem id:shift-system default:1 "Yes" "No"]
Since it’s a radio button it is automatically required if a default is set.
Forum: Fixing WordPress
In reply to: Multiple page parentsI am looking to see if this is possible as well. I was hoping to have certain sub pages show up under multiple pages in the navigation. For example:
Sales Customer Support
|-Dealer Locator |- FAQ
|-Literature |- Dealer LocatorBut I don’t want to have to create duplicate pages… Duplicate content is bad, so both of the above links need to link to the same stub.
Please let me know.
Thanks!
Forum: Fixing WordPress
In reply to: Running PHP code..You want some other text only on the News Page, but above the RSS Feed stuff?
directly above:
<div class="rss">
put your content.
example:
<?php if(is_page('news')) { ?> <div> //put your text you want above the feed here </div> <div class="rss"> <?php //paste your rss feed display php code here ?> </div> <?php } ?>
Forum: Fixing WordPress
In reply to: Running PHP code..ok, so now you have a variable called $rs which is an object that contains the result of the function call $rss->get . That object must have functions and variables associated with it to display the feed, check the provider of lastrss and see how they tell you to display your feed data. example:
replace
// here we can work with RSS fields
with the following from one of t
echo "<ul>\n"; foreach($rs['items'] as $item) { echo "\t<li><a href=\"$item[link]\">".$item['title']."</a><br />".$item['description']."</li>\n"; } echo "</ul>\n";
change the above as needed to display your output styled the way you want it. Also, check out documentation on lastrss they have some good examples with sourcecode
Forum: Fixing WordPress
In reply to: Running PHP code..ok, well I am not positive on this, but feed:// really isn’t valid. Some browsers may interpret or replace it for you if you paste that in the url.
try https://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml instead
Forum: Fixing WordPress
In reply to: Running PHP code..I Don’t know why it keeps putting ; next to the div and close div tags but those shouldn’t be there.
Forum: Fixing WordPress
In reply to: Running PHP code..ok, so we are talking about a page not a post.
Edit page.php in your themes, theme directory ie(wp-content/themes/your-theme/page.php
find where you want the rss feed to display, for example under your content.
<div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div>
under that make a new div for your rss feed
<?php if(is_page('news')) { ?> <div class="rss">; <?php //paste your rss feed display php code here ?> </div>; <?php } ?>
Forum: Fixing WordPress
In reply to: How can I avoid displaying empty the_content()?hi,
i don’t have anywhere to test this at the moment but you might do this.
if (have_posts()): while (have_posts()): the_post();
if($post->content==””)
{
//whatever you want to be there if there is no content
}
else
{
echo(‘<div class=”ui-tabs-panel”>’);
the_content(); ‘
‘);
echo(‘</div>’);
}
endwhile; endif;