naastje
Forum Replies Created
-
Forum: Plugins
In reply to: [Ideal Interactive Map] How to make whole country clickableHi, aah, makes sense now and it works 🙂 THANK YOU GUYS! and for those who don’t want the map to zoom out everytime, just comment map.zoomOut:
function zoomOut () { // map.zoomOut(); }Forum: Plugins
In reply to: [Ideal Interactive Map] How to make whole country clickableDid anyone figure this out? how to make the whole country clickable instead of the bullet points?
what rjpedrosa has posted, only makes the bullets dissapear.. the country is not clickable anymore
Thank you Tobias,
Indeed, stupid of me, I’ve installed a different plugin :/ but not it works as I thought it will. Thanks again!
Hey there Tobias,
I just posted the other one to show what I’ve tried, the first one works, second one doesn’t work
Test2 = the extension plugin on it’s own with a excel file (as you can seen in this table there is a search option for every column)
Tablepress test = tablepress table I’ve made using tablepress and used this shortcode to show it on a page
[table id=1 datatables_columnfilter="true" /](but as you can see there is no search option for each columns)Forum: Hacks
In reply to: How to add Admin menu item linking directly to a page/ or widgets.phpThanks for the suggestion to change the __FILE__ to something else.
Is your development copy making it possible? It would be really cool.
Forum: Plugins
In reply to: [WP Custom Menu Filter Plugin] How to hide nav tab?Yes, that’s what I’ve figured out, it’s a solutions to something different than what I’m trying to accomplish.
It is just that, the site has 2 admins, I’m one of them, where the second admin is not really computery savy, but he still needs to have some open doors that are much easier to make it accesible when he’s an admin as well. I’ve hidden everything that he should not be playing with and I just thought it would be better that he won’t have the possibility to add or try to add new items to the primary menu tab.
Forum: Plugins
In reply to: [Recent Tweets] [Plugin: Recent Tweets] Stopped working yesterdayHow did you change that link, it doesn’t work for me :/
Forum: Hacks
In reply to: How to hide one menu item from Admin (appearance – menus)I was thinking it should be something in those lines:
add_filter( 'wp_get_nav_menu_items', array( 'exclude_menu_items' )3 );What do you guys think?
This is the code that adds the extra fields in profile page:
/** * Add the inputs needed for SEO values to the User Profile page * * @param object $user */ function user_profile( $user ) { if ( !current_user_can( 'edit_users' ) ) return; $options = get_wpseo_options(); wp_nonce_field( 'wpseo_user_profile_update', 'wpseo_nonce' ); ?> <h3 id="wordpress-seo"><?php _e( "WordPress SEO settings", 'wordpress-seo' ); ?></h3> <table class="form-table"> <tr> <th><?php _e( "Title to use for Author page", 'wordpress-seo' ); ?></th> <td><input class="regular-text" type="text" name="wpseo_author_title" value="<?php echo esc_attr( get_the_author_meta( 'wpseo_title', $user->ID ) ); ?>"/></td> </tr> <tr> <th><?php _e( "Meta description to use for Author page", 'wordpress-seo' ); ?></th> <td><textarea rows="3" cols="30" name="wpseo_author_metadesc"><?php echo esc_html( get_the_author_meta( 'wpseo_metadesc', $user->ID ) ); ?></textarea> </td> </tr> <?php if ( isset( $options['usemetakeywords'] ) && $options['usemetakeywords'] ) { ?> <tr> <th><?php _e( "Meta keywords to use for Author page", 'wordpress-seo' ); ?></th> <td><input class="regular-text" type="text" name="wpseo_author_metakey" value="<?php echo esc_attr( get_the_author_meta( 'wpseo_metakey', $user->ID ) ); ?>"/></td> </tr> <?php } ?> </table> <br/><br/> <?php }When you remove the table out of the code, the fields disappear from the profile page, I don’t want to remove code from plugins, but is there a way to still hide it or remove it from functions.php for example?
Forum: Hacks
In reply to: How to customize the publish metabox?Thanks for your reply, I ended up using the Adminmize plugin, not exactly what I wanted as I don’t like using plugins for small tasks, but it works :p and I also wanted to disable the quick edit from page’s just for one user, but I disabled it for everyone using that plugin, not exactly what I wanted as well, but it’s better than nothing and I’m using a plugin for 2 tasks.
Specific for SEO by Yoast this code
add_filter( 'wpseo_use_page_analysis', '__return_false' );does turn off all of the plugin’s metaboxesForum: Plugins
In reply to: [Bulk Content Creator] [Plugin: Bulk Content Creator] Add CategoryI was wondering about the same, if there is any chance to add category to the plugin, so you can check the category, so it automatically puts the post in there.
Forum: Fixing WordPress
In reply to: Can't login to admin dashboard after update to 3.4.1I just see it when I put login and password it redirects me to the login-wp location `http://www.mywebsite.com/folder/wp-login.php?redirect_to=http%3A%2F%2Fwww.mywebsite.com%2Ffolder%2Flogin-admin%2F&reauth=1
`
I have already deleted the login-wp folder, why is it still redirecting me to it and causing that I can’t log in.I have added this to my header
<div id="searchmenu"> <?php chainselect_getcategories( 'category', 3, array('Select Country', 'Select County', 'Select Town'), array('Country', 'County', 'Town') ) ?> </div>and this to the sytle.css
#searchmenu { height: 100px !important; margin:0 auto; position:relative; }but it doesn’t do anything… what do I do wrong..
own fault, didn’t change permalinks to category, now it works, but doesn anyone know how to put it horizontally instead of vertically?