Rebecca Markowitz
Forum Replies Created
-
Oh right, I forgot to mention that the primary domain is https:// so I can’t use my computer’s “hosts” file.
Should I re-save the posts? I’d rather not put the URL here, sorry. Any other tips that I can do to fix it?
Thanks for your quick response.So… is there a way to use Single Text First Name and Last Name separately? We want the form to be one column, not two. Or can you really only use the Advanced Field – Name?
I had the same problem.
I am also having the same issue with NextGEN Version 1.9.3 and WordPress 3.3.1
Not that I know of.
@esmi, I added the link as absolute but the plugin TinyMCE turned it into a relative link. Any ideas?
Forum: Plugins
In reply to: [Bit.ly Shortlinks] [Plugin: Bit.ly Shortlinks] Error in headerWe also get the error. Any chance you’ll fix it soon and release an upgrade?
When I do a search in google for a post title, the first search results is for the desktop version: example.com/post-name but the second result is for example.com/post-name?mobile=1 which is very upsetting. I’m not using a caching plugin. How can I remove the mobile links from appearing in desktop google searches?
Forum: Plugins
In reply to: Using Query Posts, how do I get My Page Order to workThanks Andrew!!
The below code pretty much worked except that I don’t know how to style the results into 2 columns. Right now it alternates between left and right columns. I need to have A-L in the first column and M-Z in the second column. Any idea how to create multiple columns for pages that are alphabetical? I know dagon design has a plugin but it’s only for links and categories. Thanks for all your help!-
<?php
$pages = get_pages(‘child_of=’.$post->ID.’&sort_column=menu_order’);
$count = 0;
foreach($pages as $page)
{ ?>
ID) ?>”><?php echo $page->post_title ?>
<?php
}
?>Forum: Plugins
In reply to: Using Query Posts, how do I get My Page Order to workHi, thanks for responding so quickly! I’m trying to list the subpages of a page and add custom fields output under each one so I need to split the information. I’m using this code:
<?php
$args = array(
‘post_type’ => ‘page’,
‘numberposts’ => 40,‘sort_column’ => ‘menu_order’,
‘order’ => ‘DESC’,
‘post_status’ => ‘publish’,
‘post_parent’ => 84, // any parent
);
$attachments = get_posts($args);but it’s not reflecting the MyPageOrder order.
Any help would be amazing!!!
Forum: Fixing WordPress
In reply to: Problem with “current_page_item” navigation highlightingis there a solution for this?? I tried all the methods mentioned above with no luck. any other ideas?