Webdeveloperqx's Posts
Nairaland Forum › Webdeveloperqx's Profile › Webdeveloperqx's Posts
BodyKiss:There are API provider, google : AIRVEND API. i can forward you the docs. contact me at webdeveloperqx@gmail.com |
etoluw:i advise you start with cordova, ionic , also if you know angularjs you can check out angularfire. using cordova, it same as using phonegap but they are not same , explore the plugins available that exposes javascript API of the native device. i hope this works. |
phensbassey:Please mail me at webdeveloperqx@gmail.com , let me send you a package that teaches you all you need to know how to use wordpress. You made the right choice starting with wordpress. |
officialPMN:You need to improve it in all aspect, it is not that too okay |
youngtech:what you need to do is this: 1. From Appearance -> Editior -> select your current theme -> and click on Edit. 2.then write this: funtion wpd_blogger_redirection(){ //paste the code given for redirection here. } 3. Then for the function to be fired when wordpress inits, hook the function to an action like this: add_action('wp_head', 'wpd_blogger_redirection'); I am an expert wordpress developer who develops wordpress themes, plugins and web applications using wordpress, should you need my assistance, mail me at webdeveloperqx@gmail.com |
check the browser console for javascript errors and fix if you can or get someone to do so. |
i see that your site is on wordpress, if you want to remove the file. login via your cpanel, locate the current theme folder , navigate to functions.php file. search for the "greenstock" and and comment that line out with "//". that should remove the code block enqueuing that file. hope you understand. |
1. create your views, 2. create your models ( CRUD) , 3. create a controller to handle the interaction between your views and the models. ( create the method to handle the update, you can also do an ajax call to a file to get updated models(data) from the database and use a view to render it. I did not provide code samples, i believe you okay coding with codeigniter, those are the steps to follow. i hope this helps. |
here is the code , copy and paste: < a href="put_your_url_between_the_quotes_here" target="_blank" title="your_link_title_">Text to see</a> hope this helps. |
Nice layout, at the top left corner, remove the pagers which i believe you want to link to be pagination links. Well done. |
For all your payment method integration such as gtpay, interswitch webpay, Cashenvoy, Remita , voguepay, contact me for the integration on any cms and custom platform. Contact via webdeveloperqx@gmail.com |
YES, a javascript library JQuery will do the work using its ajax method or better still using javascript XMLHTTPREQUEST OBJECT. if you using ajax, you will have to listen to an event , in your case when the selected value changes , then you send the variable name via AJAX to display values by making calls to your database to display information matching what was selected. an example is below, make sure you have jquery installed or linked on your webpage from a CDN. <script> $( document ).ready( function(){ var selected = "listen to an event( check for your event here )"; $.ajax: { action: "link to your php file where response will be availabe ( database querries here )"; 'product name' : selected; //pass the variable selected in the field> } //display the response function devx_ajax_response(response){ document.getElementById('brand').HTML= response; } }); </script> I hope this walks you through and helps. if you need a full script written for you , email webdeveloperqx@gmail.com or put a call to : 09092882430. happy coding. |
check out www.wpbeginner.com or better still search for videos on youtube.com for how to use wordpress. |
Responsive Email is a must. though its one of the most complex stuff, because you can't just use regular css except tables. Just as we have bootstrap from the guys at twitter, we also have a solution to building responsive email templates using some pre made css classes. just call and use. Zurb Foundation made this easy to do off the record. Zurb , the creator of the foundation framework used by Facebook in all its views and layout is a responsive framework too. so tools exist to help you achieve responsive emails templates, its more than right time to start considering responsive emails. happy coding. |
Uninstall the xammp package first. delete the registry log. Make sure microsoft IIS is not enabled from list of services. This works for me when using windows but now i use MAMP PRO for mac pro. Also make sure the needed modules are installed on your computer. Hope this helps. |
yawatide:Though with web development library like UGLIFY JS. jQuery files minified files can be done. as the library strips space and uglify the codes, this has improved page speed and loading time plus smaller web page sizes. check out UGLIFY JS. Its cool. i do use it on my Mac Pro. |
UCHEUKAGWU:There is a php library i do use that does the work. You can search online for FPDI php library . download it and instantiate a new instance of the FPDI object to call the inbuilt methods to do the work from the class. I can build the site for you if you don"t get it. mail : webdeveloperqx@gmail.com happy coding. |
Master Regular javascript first then frameworks . most frameworks are built on the core. so a knowledge of the core should be core before migrating to frameworks. from working and coding applications experience, frameworks only makes the task achieved with less coding but still rooted in pure javascript. as a developer though, i prefer pure javascript coding to libraries. |
Many banks as? Gtb has not stopped, link your card to a PayPal account (any accoount). |
you can build the API using slim framework, none exists for now. the only challenge i think you may face is converting the questions to storing it in the database from which you can make API calls. |
is this domain a custom domain for a blogger ? if so, login to your dashboard, under basic settings, tick the option of redirrecting nairanews247.com to www.nairanews247.com , That will fix it. i just inspected your site and found out its on blogger . do proceed as been instructed above. Happy blogging. |
I develop custom plugins and themes on wordpress. I can handle the project for you satisfactory as I have proficient knowledge of website development using wordpress functions. Do send a mail to: webdeveloperqx@gmail.com Happy new month. |
darthv:its a custom built script. i can build same for you . check this one i was building , www.auctiongoods.com.ng if you need my service, do send me an email: webdeveloperqx@gmail.com |
i believe you are a web developer. well if not on wordpress level, what you can do is code that functionality. first of all, create a javascript file , name it mobileProtect.js ,put the file in your "js" folder, then load it in wordpress like this inside your "functions.php" file : function register_mobile_protect_js(){ wp_register_script('mobile-project', get_templater_directory_uri().'/js/mobileProtect.js', array("jquery" , false, true);wp_enqueue_script('mobile-protect'); } add_action('wp_enqueue_script', 'register_mobile_protect_js'); the content of the mobileProtect.js file is solely up to you . as a web developer, you should be able to use jquery and do what you want. if you require my service to build a fully function plugin to do this for you, do send me an email : webdeveloperqx@gmail.com . |
what you can is use javascript to detect the mobile browser and render the needed functionality. you can give the section that houses your content an "ID" , then "document.getElementByID("id_of_your_content_section" ."run javascript function when detected a certain browser" . hope you get the methodology ? |
IkpemhiTG:you don't set default timezone in a ".htaccess file" . you do in a "php.ini" file . look for the php.ini file and paste the code : date_default_timezone("Africa/Lagos" ;. if a php.ini file does not exist in your root directiory of your website, simply create a new file and save it as php.ini then paste the code. i hope this solves your headache. happy coding ! contact: webdevloperqx@gmail.com |
Capacchino:in addtion to appying , img{width:100%}, to make images responsive in all mobile formats, take advantage of the image responsive class bootstrap makes available, on the <img> tags, give it an attribute value of .img-responsive like this : <img src="path_to_your_image" class="img-responsive"> i hope this helps. bootstrap is mobile first responsive html,css and javascript framework. its MOBILE FIRST, starts your columns for xs . thats col-xs-1-12. |
yeah, your site is loading very well, just viewed it on my mac using chrome. |
I can develop it for you with a high level of satisfaction. have gone through the site and noted features and functionalities. do send a mail to webdeveloperqx@gmail.com |
php sound is a php script used to achieve what you intend to. i can help you set it up using phpsound or using a cms like wordpress with coded custom plugins. if you need my service, do send a mail to webdeveloperqx@gmail.com . many thanks. |
i write custom theme developed using wordpress. i can build same for you at affordable price. send a mail to webdeveloperqx@gmail.com |


, false, true);
?