patricia1706
Forum Replies Created
-
Forum: Plugins
In reply to: [Inline Comments] Pro version 0.3 – Comment and Comment Number not countingIs the pro version also not receiving support any longer? When I purchased this less than 2 weeks ago, it came with the promise of basic assistance – selectors, and so forth (of course all within reason). It would have been nice to know in advance of purchase if this is the case. Thanks.
@hafman
Could you help me out with the PHP call to get the “category fields” plug-in working? The one with Sonika’s update as you mentioned above.
Thanks!I’m wondering the exact same thing – I am getting errors when having multiple galleries appear on the same page (the same image loaded into the main image div)- is there a work around here?
Forum: Plugins
In reply to: Clickable Tag List Related to Child CategoryBump ??
Forum: Plugins
In reply to: [Plugin: Shadowbox JS] Movie box not resizing properlyThe solution from revilla19 worked fine for me – just put it in quotes like this: rel=”shadowbox;width=360;height=240″
Thanks for the tipForum: Plugins
In reply to: Filter and display attachmentsFigured out in case anyone will have the same problem in the future:
<?php $args = array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID, 'orderby' => 'menu_order', 'order' => 'ASC' ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { echo '<li><a href="'.wp_get_attachment_url($attachment->ID).'" rel="shadowbox" title="'.$attachment->post_excerpt.'">'; echo $attachment->post_title; echo '</a></li>'; } } ?>
This will display the image caption in the shadow box.
Forum: Plugins
In reply to: Filter and display attachmentsI’ve got code similar to edde, only mine is with images.
In this line:echo '<li><a href="'.wp_get_attachment_url($attachment->ID).'">';
I’m having difficulty having the title of the image ($attachment->post_title) being dynamically inserted into the a href call:
echo '<li><a href="'.wp_get_attachment_url($attachment->ID).'" rel="shadowbox">';
I’ve got the rel=”shadowbox” so that the text link will pop open an image shadowbox (this is working). In order to have a title on the pop up window I need to include this within the a href string…can any one offer a suggestion?
Thanks!Bump ??
Forum: Plugins
In reply to: [Plugin: My Link Order] New Version – Important InfoThanks for the plug-in. I’m on WP 2.8.6 and the drag and drop link order interface isn’t working for me, it’s simply selecting the text when I try to grab a box to move it. That drag and drop interface is working fine for me on the category order plug-in…any thoughts?
Forum: Plugins
In reply to: [Plugin: Flutter] url for uploaded fileI’m having the same issue: I’d like to have the file name of the uploaded PDF become a link to download it. I can get the info to print to the page using:
<?php if ( get_post_meta($post->ID, 'PDF-Download', true) ) { ?> <div class="curate_data"><?php echo "DOWNLOAD <em>as</em> PDF: "; echo get_post_meta($post->ID, 'PDF-Download', $single=true); ?></div><!-- /publisher --> <?php } ?>
but this of course is only a strong of text returned, how can one turn it into a link?
Forum: Plugins
In reply to: Category depth function with get_categoriesWow, super, that was an easy fix, thanks so much for your help andquick reply!
Forum: Plugins
In reply to: Autogenerate sub-index pages with excerptsI think a lot of people are looking for this function as they use WP more and more like a CMS and not a blog site. I found this looking for the same thing
https://wpguru.co.za/page/display-title-excerpt-of-child-pages/
They posted this code (to be pasted BELOW the main loop on say page.php)<? $pageChildren = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = ".$post->ID." AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?> <? if ( $pageChildren ) : foreach ( $pageChildren as $pageChild ) : setup_postdata( $pageChild ); ?> <!-- loop stuff here --> <? endforeach; endif; ?>
It’s not displaying child page titles with excerpts (for me), perhaps if a PHP guru would have a look they would have a thought about how to correct this.
Forum: Themes and Templates
In reply to: display page parent on page with titleGreat to have found this today! I’m super novice at PHP, but got this working, only I was wondering how it can be changed to display top level parent pages (so only one page parent title would appear – even if you are at sub sub levels of pages)
Thanks!
Forum: Installing WordPress
In reply to: upgrade 2.6.3 blog wont display – admin section okAh ha, found this and worked like a charm:
https://txfx.net/files/wordpress/disable-canonical-redirects.phpsForum: Installing WordPress
In reply to: upgrade 2.6.3 blog wont display – admin section okthanks , but this didn’t work – someone mentioned it could be a htaccess file problem, but I’m lost here?