petriedish
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to set static page as parent of Custom Post Type pageI ended up using two plugins to as workarounds solve my issue and get the breadcrumbs and URLs I wanted.
There was no way to “set” the parent of the CPT page as an existing static page (therefore no way to have the breadcrumbs and URL/permalinks automatically work.)
So, I used the Breadcrumbs Nav XT for the breadcrumb issues, and I used the Types plugin for the URL issues.
I recreated every static page in the site’s “Our Work” section instead as a CPT page, and used Breadcrumbs Nav XT on those pages only because I could modify the breadcrumb path to appear the way I wanted within that plugin’s settings for CPT pages.
An explanation of how I used the Types plugin to get the permalink URLs I wanted is here.
I got a great set of instructions and help here. Great support!
https://wp-types.com/forums/topic/incorrect-urls-when-cpt-single-page-has-static-parent/
Forum: Fixing WordPress
In reply to: How to set static page as parent of Custom Post Type pageOr anyone have luck doing something like what I’m trying to do, using the Types plugin?
Forum: Fixing WordPress
In reply to: How to set static page as parent of Custom Post Type pageOr, I’ve just also seen the Posts 2 Posts plugin… does anyone know a step by step way I can use this plugin to achieve my goal?
Forum: Fixing WordPress
In reply to: How to set static page as parent of Custom Post Type pageI posted my same issue in the Headway forums and this is what someone posted that he’d found:
Does anyone know where I add this code?
From: https://janina.tumblr.com/post/3588081423/post-parent-different-type
add_action('admin_menu', function() { remove_meta_box('pageparentdiv', 'chapter', 'normal');}); add_action('add_meta_boxes', function() { add_meta_box('chapter-parent', 'Part', 'chapter_attributes_meta_box', 'chapter', 'side', 'high');}); function chapter_attributes_meta_box($post) { $post_type_object = get_post_type_object($post->post_type); if ( $post_type_object->hierarchical ) { $pages = wp_dropdown_pages(array('post_type' => 'part', 'selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __('(no parent)'), 'sort_column'=> 'menu_order, post_title', 'echo' => 0)); if ( ! empty($pages) ) { echo $pages; } // end empty pages check } // end hierarchical check. }
Forum: Plugins
In reply to: [Zendesk Chat] Plugin is adding space to top of websiteDitto – this is wreaking havoc for me.
Forum: Plugins
In reply to: [Zendesk Chat] Plugin is adding space to top of websiteI’m having the same problem. @esaeler, I followed the link to your site and it appears to be working now with the Zopim plugin. What did you do to fix it?
Forum: Plugins
In reply to: [WP Fluid Images] [Plugin: WP Fluid Images] Support For captionsI’m having the same issue, I NEED to have captions for the images on my sites.
According to the link above, “If you insert an image with a caption, instead of applying a style attribute with a width as a percentage to the image, the plugin will apply it to the .wp-caption div.”
However, when I insert an image that has a caption, it seems that WP Fluid Images strips out any caption coding altogether, only leaving the img src reference in the coding with no caption coding.
Forum: Fixing WordPress
In reply to: Contact Form HelpHi Josh, line 241 just says:
$arrURL = parse_url( $url );
Not very helpful.
I figured out a workaround to my problem though (but not a solution). I was testing features of the FS Contact Form, turning them on and off to test if any of them were causing the error, and I found when I turned OFF the Akismet Spam Prevention, I stopped getting the errors.
Usually I like the additional spam prevention provided by Akismet, but I figure if I have the Captcha working on the form already (and everything else is working correctly – the form submits properly and emails me correctly) then I’m okay without the Akismet for now.
Forum: Fixing WordPress
In reply to: Contact Form HelpI’m getting the same error using the Fast Secure Contact Form. And I can’t switch to Contact Form 7 because that one’s not compatible with the WP Maintenance Mode plug-in that I need the contact form for.
Anyone have a solution or suggestions?
Thank you, Mike, for releasing a new version of the plugin!
I was able to get the Captcha input field to show correctly in IE by updating the following in the form style options:
I updated this row:
CSS style for CAPTCHA input field on the contact form:and added the following at the end of the existing CSS coding:
margin-top: 80px\9; /* IE 8 and below */I’m making a donation to you through Paypal today.
Is there any way to edit the plugin to add conditional code for particular IE versions? I found the layout works in IE if I change the padding-top: of the Captcha Code input DIV to 88px from 10px.
Here’s a site: https://www.distinctlykelownatours.ca/contact/ and the theme is deLuxe 0.9.7 by ThemeShift.
FYI I tried to edit the code for the CAPTCHA DIV’s parent DIV to clear:both; but it didn’t work either.
Grrrr IE!
I’m having exactly the same issue. Is there a way to edit the code for the CAPTCHA DIV’s parent DIV to clear:both; ?
I tried adding the padding-bottom:30px; to the Captcha DIV but to no avail. It just moves the Captcha Code: label down further.