Comment by user3040610 on How to access JSON array in PHP
check what you are getting from print_r($_POST['datastring']);
View ArticleComment by user3040610 on No index defined in MySQL wp_postmeta and wp_posts
Brando -check the errors you get in firebug console
View ArticleComment by user3040610 on Wordpress - connect to OAuth server
did u tried with this plugin wordpress.org/plugins/oauth2-provider
View ArticleComment by user3040610 on Menu mobile Wordpress it's under the home
@daniele check in wp-content/themes/hue/css/hue.css
View ArticleComment by user3040610 on Reset jQuery multiselect dropdown with a checkbox
Add return false at the end in $("#resetsfilter").click(function () {})
View ArticleComment by user3040610 on Click on button pops up share mobile phone window html
what do you mean by window of mobile phones? are you need it in responsive page or mobile application?
View ArticleComment by user3040610 on Add remove button on jQuery UI autocomplete
do you want to remove the autocomplete items or autocomplete itself
View ArticleComment by user3040610 on Alternate button colour on click
for dynamic buttons in for loop you should use the class and call the click event with that class
View ArticleComment by user3040610 on MySQL - How to get primary key of a table?
Try SHOW INDEXES FROM tablename WHERE Key_name = 'PRIMARY'
View ArticleComment by user3040610 on How can i check if a URL is accessible to a user?
whent the url was not accessible handle it with error:function(){}
View ArticleComment by user3040610 on MySQL not starting in xampp
check that mysql port is blocking using Netstat in xampp
View ArticleComment by user3040610 on multiple checkbox values inserting using foreach...
check the browser console for the ajax post data is sent correctly and also check in php end with print_r($_POST)
View ArticleComment by user3040610 on How to write script to bind and unbind to stop and...
try with $(document).on(event,selector, function) for binding and unbinding the click handler
View ArticleComment by user3040610 on Add links of outside pages to wordpress blog menu.
what was the error you getting in your menus and how you have implemented it.
View ArticleAnswer by user3040610 for How to Enable HTTPS in WordPress using .htaccess?
You can try the following:RewriteEngine On RewriteCond %{HTTP_HOST} ^hubket\.com [NC]RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.hubket.com/$1 [R,L]
View ArticleAnswer by user3040610 for Override default xml in Magento 2.1 for header...
Your XML path in the module is incorrect. It should be like this:vendor/magento/module-theme/view/frontend/layout/default.xml to app/code/my_module/my_project/view/frontend/layout/default.xml .
View ArticleAnswer by user3040610 for How to get sum of all selected data from bootstrap...
You can get the attribute value with below code,var price= $('#serviceid option:selected').attr('data-price');
View ArticleAnswer by user3040610 for Jquery find a element inside a div
Try this:$('#customer').parent('div').html();
View ArticleAnswer by user3040610 for how to loop and autoanimate a content slider in jquery
Try this:$('.next').click(function(){ $('div.slide').animate({ left: "-=800px" }, 800, function() { // Animation complete. });});
View ArticleAnswer by user3040610 for updating table columns with arrays, php
It should be like this,remove the for loop $values=array('reas'=>$reason,'actu'=>$act,'ids'=>$apid); $update_row =mysql_query("UPDATE ActivityProduct SET Actual=...
View Article