VegasKev88
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Clipper expired coupons not deleted and slow siteYou’ll need to contact AppThemes at https://forums.appthemes.com/ for assistance with this as this is a custom theme issue.
Forum: Fixing WordPress
In reply to: No plugin can be installedIf you enter the ftp password, it should allow the upload, if it still doesn’t, you’ll need to contact your hosting provider and have them replicate the issue so they can reconfigure your hosting settings.
Forum: Fixing WordPress
In reply to: PermalinksIs ‘youth-teams’ a custom post type? Please explain what ‘youth-teams’ is and I should be able to give you a redirect code to achieve what you want.
Forum: Plugins
In reply to: [MP6] MP6 2.0 Replaced Menu Icons With Gear Icon@joen thanks for the heads up. I figured that the team modified it, but I didn’t know why, so I’m stoked to see an answer so quickly. I’m using mp6 as the admin styler in my CRM plugin and I love it. You all have done an amazing job with the flat UI, while still keeping it sexy…especially with the new color schemes ( the blue one and the teal one are bad to the bone ).
Forum: Plugins
In reply to: [Posts 2 Posts] Using p2p in another pluginlol…I got it……here’s my revised code for anyone else that needs to do this.
function wpcram_connections() { // ensure p2p is active and functioning first. if ( !function_exists( 'p2p_register_connection_type' ) ) { return; } p2p_register_connection_type( array( 'name' => 'user_to_clients', 'from' => 'clients', 'to' => 'user', 'admin_box' => array( 'show' => 'any', 'context' => 'side' ) ) ); } add_action( 'after_setup_theme', 'wpcram_connections', 50 );
Forum: Reviews
In reply to: [YARPP - Yet Another Related Posts Plugin] Does the job alrighthave you tried to use the template files option that comes with it so you can totally customize how everything appears? You should check it out. I think it’ll solve your issues.
Forum: Hacks
In reply to: Retrieve Existing Taxonomy Values For Form As CheckboxProgress….almost there.
So I was able to pull the existing values from the taxonomy using this…
<fieldset> <h4>Testing The TaxBoxes</h4> <?php $platformsTerms = get_terms('game_platforms',array( 'taxonomy' => 'game_platforms' )); foreach($platformsTerms as $term){ $checked = (has_term($term->slug, 'game_platforms', $post->ID)) ? 'checked="checked"' : ''; echo "<label for='term-" . $term->slug . "'>" . $term->name . "</label>"; echo "<input type='checkbox' name='term" . $term->slug . "' value='" . $term->name . "' $checked />"; } ?> </fieldset>
…now the only issue is that it only pulls values that have been used previously in an existing post. The problem with this is that it’s a new site with zero posts, so once a user would not be able to submit any values for this specific taxonomy as none have been used before (even though they were created manually in wp admin.
I’m almost there…just need that last bit…Murphy’s Law
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Serious Issues, Affected My Entire ServerYes, Mikko, that’s what I ended up having to do. It was definitely not while your plugin was active, and it had something to do with the uninstall process + some definite bad luck lol.
Oddly enough, I skyped a close friend to help me debug and he actually mentioned that he’d ran into a similar problem on a site that was running your plugin (but while the plugin was still active). He and his team ended up coding up an alternative search engine instead. His issue was about a year ago, so while the two issues may seem related, I doubt there were, though his theory that mysql had some locked tables were actually correct.
I meant to update this post and got stuck playing “catch up” all evening, sorry.
I should note that I don’t believe it had anything to do with the functionality of the plugin while active. However, the fact that it didn’t uninstall correctly may be something to check out on the plugin side. I have no other plugins on the site that should conflict with the uninstall process, and I’m using twitter bootstrap.
It’s still in dev on a dev server with no active or demo users yet.
I’m running latest linux, php, wp, etc.
Maybe it was a complete fluke. idk lol. I hope I wasn’t too harsh on you, as I definitely wasn’t trying to bash the plugin’s features by any means. Really only trying to make you aware, in case it was something that needed your attention.
Forum: Networking WordPress
In reply to: Passing membership from one site to anotherSorry for the delayed “Resolved”. Client went a different way and I just realized that I never marked this resolved.
By the way…I ended up just writing a plugin for the custom post type and template redirects.
Forum: Themes and Templates
In reply to: [Shell Lite] Changing page/post font style, size & line height2 things.
1. Please include a link to your site.
2. Are you using a child theme? If not, are you adding ‘!important’ to your styles to override any default styles on the same stylesheet? That being stated….you really ought to create a child theme. It’s only an additional 5 minutes of your life, and I swear to you it will save you tons of frustration in the future.
Also…what type of style changes are you trying to make to the fonts in the theme? Include them here with your reply so I can adjust them in chrome dev tools and give you the code in my next reply.
Regards
please include a link to your site so we can help ya out. Also, a screenshot of what you WANT it to do or of what it IS CURRENTLY doing with some notes would help us help you faster.
Regards.
Forum: Fixing WordPress
In reply to: Cannot log in to site adminif that doesn’t help, export your database via phpmyadmin, backup your /wp-content/ folder and reinstall wordpress latest version.
If that doesn’t work, it’s probably an outdated plugin conflict….in that case, simply rename the plugin folder to something like ‘old-plugins’ and you should be good.
Best of luck….let me know how it works out for ya.
Forum: Fixing WordPress
In reply to: Setting up redirects using .htaccess fileAdd these two lines
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
regards
Though maybe the mods should delete the thread since it’s just a link to a tutorial that doesn’t exist, and there isn’t any productive content in the thread for people to learn from? Just a thought re: cleanup. Nothing against the OP….just thinking about user experience is all.