Aboobacker.
Forum Replies Created
-
Sure will give it a shot.
Another issue I noticed, on script.js for some reason, the
wpcf7_utils_url
doesn’t load the utils script on https (at least on my multi-site). I fixed it explicitly calling it something likewp-content/plugins/international-telephone-input-for-contact-form-7/vendor/intl-tel-input/js/utils.js
The latest version (Trunk) still doesn’t have the file flags@2x.png in the above-mentioned path.
It looks you have forgotten to upload it again ??
Cheers,
AbForum: Plugins
In reply to: [AB Google Map Travel (AB-MAP)] Getting error messageHi there,
Sorry for the late reply. You need to get Google map API keys in order to work. And then you need to set it in the plugin.
Yes Dave_S, you are correct. It detects same picture in different dimensions and names.
This happens when we set a featured image (in bigger resolution) and insert a ‘medium-sized’ image to the content area.
Is there a solution here other than uploading the same image to both the featured image and content area?
I am getting the same issue. Did anyone find the solution?
Forum: Hacks
In reply to: Display sub menu items of a parent menu – wp_nav_menuHi,
WordPress creates a session when you login. So in your cakePHP code, you have to define this session. Also you have to load WP on the cake PHP.Search yourself on how to load WP headers (functions) on external PHP files ??
And these would be useful for you:
https://codex.www.ads-software.com/Function_Reference/wp_hash_password
https://codex.www.ads-software.com/Function_Reference/wp_login
https://codex.www.ads-software.com/Function_Reference/wp_set_auth_cookieGood Luck.
Note: You have posted this under a wrong question. (may be to notify me). But keep creating them as new topics.
Thanks,
ABForum: Hacks
In reply to: Display sub menu items of a parent menu – wp_nav_menuHi,
I had found a solution for this in that time. I remember I did this by catching the registration values and injecting them to WordPress database in the same time using codes. Remember wp_users and user meta table I think. Not in desk now so can’t tell exact table names. Check the user tables as well.
Will try to get the code for you. If I get, will definitely Post here.
Thanks,
AbooForum: Themes and Templates
In reply to: get_theme_data is deprecated since version 3.4!Sure. Will do so. Thanks.
Forum: Themes and Templates
In reply to: get_theme_data is deprecated since version 3.4!Woocommerce 2.0.7
Forum: Themes and Templates
In reply to: get_theme_data is deprecated since version 3.4!I am using Woocommerce theme with WP 3.5.1
Forum: Themes and Templates
In reply to: get_theme_data is deprecated since version 3.4!I am also getting this issue.
Notice: get_theme_data is deprecated since version 3.4! Use wp_get_theme() instead. in /home/coldsmok/public_html/wp-includes/functions.php on line 2839
How to fix??
Forum: Hacks
In reply to: Display sub menu items of a parent menu – wp_nav_menuThis is what I want:
<?php $args = array( 'order' => 'ASC', 'orderby' => 'menu_order', 'post_type' => 'nav_menu_item', 'post_status' => 'publish', 'output' => ARRAY_A, 'output_key' => 'menu_order', 'nopaging' => true, 'update_post_term_cache' => false ); $items = wp_get_nav_menu_items( 'Sidebar Menu', $args ); foreach($items as $item ) { ?> <li class="menu"> <?php if( !$item->menu_item_parent ){ ?> <a href="#" class="linker"><?php echo $item->title;?></a><?php } ?> <?php if( $item->menu_item_parent ){ ?> <a href="#" class="opener"></a> <div class="slide"> <div class="holder"> <ul> <li> <a href="#"><?php echo $item->title; ?></a> </li> </ul> </div> </div> <?php } ?> </li> <?php } ?>
But only a single second level menu is showing. How to do a foreach there?
Thanks too.. ??
Hi,
Updated the plugin with version 1.1.
Please update your plugin. It is working charm now.Thanks
Yes! I noticed this issue in some other themes. Let me fix this issue quickly. I think it’s belongs to some jQuery conflict. But It is working on my local machinw with Twenty Eleven theme!.
The new bug fixed version will be quickly issued.
Thanks