Karl Jacobs
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] The problem with this "from" change…That’s a partial fix, but still doesn’t allow for quick scanning of messages. (My company has 4,000 employees.. so don’t know if someone is internal or external, or from one of our prime customers).
Forum: Plugins
In reply to: [Contact Form 7] The [your mail] issue(This makes a good reminder to check the support forum for any plugins you are updating before you go ahead and update everything…)
Forum: Plugins
In reply to: [Contact Form 7] Reply-To syntax error; can't find errorDeb,
It’s simple.
They’ve taken away the ability to have the “From” field be that of the person that filled out the form. It now needs to be a generic email, and the actual sender information needs to be buried in the body of the email.
So yes, you can’t simply reply to the sender anymore from a form submission.
Forum: Plugins
In reply to: [Contact Form 7] The [your mail] issueSo.. what this is doing, is breaking the usability of the forms for my end users. They now have to dig into the body of the email to get the address to reply to, and then edit the headers to make sure the reply address is correct.
I understand the spam issue, but for a corporate site, there is no email coming from where this site is anyway other than the forms.
hmm.. seeing all the info here, it’s certainly time to dump Yoast. Freemium plugins are not something to rely on.
Forum: Themes and Templates
In reply to: formatting date on post_date🙂 I was try to not post too much code.. 😀
Thanks, I’ll do some reading there and see if it makes sense to me (and if not, hope the dev will be back from sick leave soon.. 😛
Forum: Themes and Templates
In reply to: formatting date on post_dateHmm.. that is pulling the posting date of the page it’s on, not of the post being referenced.
Here’s the entire code block so you can see what is going on overall.
function inline_category_list_function($atts) { $returnHtml = ""; $args = array( 'category_name' => $atts['category'], 'posts_per_page' => '5' ); $posts_arr = get_posts($args); if(!empty($posts_arr)) { $returnHtml = '<div class="'.$atts['style'].'">'. '<ul>'; foreach ($posts_arr as $post) { $permalink = get_permalink( $post->ID ); $returnHtml .= '<li><a href="'.$permalink.'">'.$post->post_title.'</a>'; if($atts['displaydate'] == 'true') { $returnHtml .= '<span class="date">'.$post->post_date.'</span>'; } if($atts['displayexcerpt'] == 'true') { $returnHtml .= '<p>'.$post->post_excerpt.'</p>'; } $returnHtml .= '</li>'; } $returnHtml .= '</ul></div>'; } return $returnHtml; } add_shortcode('inlineCategoryList','inline_category_list_function'); ?>What this is doing is pulling the list of posts in a certain category, and displaying their post date and abstract if flagged in the shortcode.
I wanted this so I could display a list of posts inline in the contents of a page, without it having to be hardcoded at the top or bottom of page, and without requiring yet another custom page template.
Forum: Themes and Templates
In reply to: formatting date on post_dateesmi,
It’s an in-house buit theme, I think it was based on 2010, but there’s been a lot of hacking on it since. It’s part of a block for generating an in-line list of posts of a specific category via a shortcode.
Here’s the larger piece of code.. it works fine, I just need to figure out how to formate the date…
if($atts['displaydate'] == 'true') { $returnHtml .= '<span class="date">'.$post->post_date.'</span>'; }Forum: Plugins
In reply to: [Stealth Login Page] Why the change? 4.0Have to say, I’m waiting for the previous functionality as well. I’ve got 20+ users that will never remember a second password, but I can give them a link to bookmark.. ;D
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?I’ll try with the 2013 theme, and then add it all my installed plugins that I have on this corporate site.
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?Should also add that this is a multisite install. And tried it yet again, visual editor breaks it every way I do it.
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?Yep, it’s certainly on it’s own line. I just tried it again, with no additional html around the link, just the link itself.
If I have time this weekend I’ll try on a test site with the default 2013 theme, and see if it works there. Perhaps there’s something missing theme wise, or perhaps a plugin is doing it. This is with 3.6, latest TinyMCE, and various other plugins.
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?It’s whatever internal code WP is doing behind the scenes.
Best way is to try it yourself. Create a new page/post, and paste in a YouTube link in the text/html editor, and publish it. That works.
Now edit that post/page and switch to the visual editor, edit some other text on the page, leaving the link alone, and the either save that change, or go back to the text editor and save the page. The link is now broken, and you only see the Youtube code on the page.
So that’s what the problem is, I can add a video, and have it work. But if one of the other editors/authors changes the page in the visual editor, the video is gone, replaced by the text for the link.
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?That’s what we are doing, and it works fine if pasted into the text/html editor. However, once the page/post is touched by the visual editor, it’s stripped of it’s link, and it’s just text.
Forum: Fixing WordPress
In reply to: oEmbed restricted to superadmins?Christiaan,
The problem is that even with oEmbed, if another author edits the page in the visual editor, the YouTube link is getting converted to plain text. My authors/editors are very reliant on the visual editor.