kn00tcn
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] STILL can't launch Jetpackwell… started over… it’s working now
what i did was install jetpack, link to account, disable all modules, then enable a few that i want including json api, now there’s no more activate button & it seems to work on wp.com
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] STILL can't launch Jetpackwhat host? what other plugins do you use? what functions does the theme use (or does the theme look like it’s adding a lot of complex functions)?
i just ran into the problem on ipage, but no issue on godaddy & another one
time for me to dig…
(btw, notice the official jetpack staff arent available for another 11 days)
EDIT: https://www.ads-software.com/support/topic/activated-centralized-site-management-and-now-cant-access-admin?replies=26 this is exactly what i ran into, it happened when i clicked activate
Forum: Plugins
In reply to: [Flamingo] Title change will not changemaybe you can make a field in the form, then at the bottom do flamingo_channel: [yourtitlefield]
also, https://www.ads-software.com/plugins/contact-form-7-modules/ check this out! this might be exactly what you need this time
Forum: Plugins
In reply to: [Flamingo] Use different fields for "Subject" and From "Name "?if you all are still subscribed to this thread, the functionality already exists to control the data that flamingo uses
so in OP’s case, as long as you can load your data from a custom field or wherever into the CF7 field ID, & correctly display it in the mail settings or body, then it should work fine with flamingo
Forum: Plugins
In reply to: [Flamingo] Title change will not changeForum: Plugins
In reply to: [Flamingo] Inbound Messages Admin: Can I Customize Columns or Fields?there is always a way… if you dig into the code & modify it
but then that will get overwritten every time the plugin updates, unless you can add a filter or companion plugin?
i assume it’s unlikely you’re comfortable with coding up your own solution, so maybe someone can figure it out, could even become a new feature of the plugin if takayuki adds it
i probably would figure it out eventually, but i’m in the middle of finishing up a site these days
EDIT: i’m thinking you might be able to change the ‘channel’ data right now very easily
in the CF7 additional settings, you could try adding flamingo_channel: [urlfieldfromcf7] (adjust the field [name] of course)
Forum: Plugins
In reply to: [Flamingo] Inbound messages: wrong visualizationhttps://www.ads-software.com/support/topic/cant-find-where-to-edit-code-to-change-inbound-messages-fields?replies=3#post-5230474 here is the answer, you have to specify your renamed field to flamingo
so for example, this is what a custom name field will look like
CF7 form: [text* mycoolname placeholder “Your Name”]
CF7 mail from: [mycoolname]
CF7 message body: [mycoolname] has sent you a message
CF7 additional settings: flamingo_name: [mycoolname]Forum: Plugins
In reply to: [Flamingo] Emails from Contact 7 form nor showing up in address bookit gets generated if you use that generate feature, but you have conplete control over the name inside the CF7 form settings
your field probably looks like
[email email-635 placeholder “Your email address”]change it to:
[email your-email placeholder “Your email address”]you can see how these [fields] change when you use the generate feature by adjusting things & looking at what happens to the preview code
Forum: Plugins
In reply to: [Flamingo] Problems in receiving forms through emailthis might be a hosting or email provider issue, recently i tried a web host & it was constantly dropping regular email messages! this was without any php, just their mail client that is part of your hosting plan, unacceptable…
Forum: Plugins
In reply to: [podPress] PodPress, Feedburner and iTunes – Only 10 listingsif i remember, feeds might be able to have a template page similar to category.php or archive.php
if so, you could try altering the wp query to change the max posts value
Forum: Reviews
In reply to: [User Theme] straight to the point pluginwhat if another person joins in the development?
if i do it, it would be a good learning experience being my first plugin
Forum: Hacks
In reply to: add date, function.phpi would think date() is the server’s time, unrelated to your blog settings or the publish date of the post
try the_time()
Forum: Hacks
In reply to: add content to a specific category postwhy dont you just make a template file for the category itself??
just copy your curent index.php (if that’s all you’re using so far) and call it category-3.php, then put the read more link and substr there while every other part of the site stays different
EDIT: whoops misread, just put the if in category as part of your single.php?
Forum: Hacks
In reply to: is it possible to make a 'primary' category for wp_nav_menu() to highlight?ok that went better than expected, i have it working fine using the ‘advanced custom fields’ plugin to create a dropdown in the post edit screen
if nothing is selected, it highlights the categories as it does with wp_nav_menu, whether it’s one category or several
if a primary category is selected, it highlights only that one
if disable highlight is selected, no menu items are highlighted
<ul id="testmenu"> <?php function sportmenu($sport) {echo '<li><a href="'.get_term_link($sport,'sports').'" id="msport-'.$sport.'">'.$sport.'</a></li>';} sportmenu('Basketball'); sportmenu('Football'); sportmenu('Hockey'); sportmenu('And So On...');?> <?php global $wp_query; $psport = get_field('primary_sport'); $osport = get_the_terms($wp_query->post->ID,'sports'); if ($psport) { if ($psport != 'none' && $psport != 'disable') : ?> <script type="text/javascript"> $('#testmenu #msport-<?php echo $psport; ?>').addClass('active'); </script> <?php endif; if ($psport == 'none') : ?> <script type="text/javascript"> <?php foreach($osport as $term){echo "$('#testmenu #msport-".$term->name."').addClass('active');";} ?> </script> <?php endif; } ?> </ul>
yes you can see that i’m actually using custom taxonomies instead of built in categories, I AM INVINCIBLE
Forum: Plugins
In reply to: [Galleria] no workworks fine here, any js errors in your browser’s console?