wpsubash
Forum Replies Created
-
Your support is one hell of a nightmare man. Either they aren’t interested to understand the problem or they have hired noob guys for the support. Wasted my whole day and this is what I got the reply from the support ticket:
“You can add only one image upload option in the form. We have checked already one image upload option is added that’s why the image option is missing:”
“The logo image and Cover image feature come from the theme section but the listing form comes from the Classified Listing plugin. Both are different. “
What should I understand from this? I was asking for a solution to my problem, I have used plugins and themes built by you guys and now they are escaping from the problem saying plugins and themes are different things.Yes, I want to add custom image upload field to the form builder as I don’t want same image on the cover and brand logo. I can add the Custom image field to the Form but how do you link that image to the brand logo?
I created a ticket for this issue. Hope it will get resolved soon. Thank you.
Forum: Plugins
In reply to: [W3 Total Cache] Browser cache not following htaccess rule.Hi @vmarko. Thank you for responding.
Yes, I looked closely and found out it is not generated by W3TC. Is this the reason why Browser Cache feature enabled inside W3TC plugin is not working because of the custom rule? Also there is no other plugin for this purpose and I have enabled everything.
Here you go: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.skyphonez.com.au
Thank you.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Breadcrumbs it does not work well.Hi @tdgu are you working on in this issue? Looks like the issue is still not solved. Thank you.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Breadcrumbs it does not work well.I have been facing similar issue. If you find any solution please update here. Thank you. @lisetta75
- This reply was modified 5 years, 6 months ago by wpsubash.
Forum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.Sorry to trouble you Sir. The problem is solved. Thank you. 😀
Forum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.I solved this one. Even though this error is gone, taxonomy field isn’t populated.
Forum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.Hi Aurovarata. I can see Uncaught ReferenceError: jQuery is not defined in console in the end of this code.
(function( $ ) {
‘use strict’;
(function(){ //make scope local to this script
$( document).ready(function() {
var fname;
var cf7Form = $(“div#cf7_2_post_9543a23950 form.wpcf7-form”);
var $input;
if(cf7Form.is(‘div.cf7-smart-grid.has-grid form.wpcf7-form’)){
//if the smart grid is enabled, execute the loading once the grid is ready
cf7Form.on(‘cf7SmartGridReady’, function(){
preloadForm($(this));
});
}else{
preloadForm(cf7Form);
}
// function to load all the data into the form
function preloadForm(cf7Form){
var data = ”;
if(‘function’ == typeof $.fn.post2CF7FormData) data = cf7Form.post2CF7FormData(‘cf7_2_post_9543a23950’);
else if( ‘undefined’ != typeof window[‘cf7_2_post_9543a23950’] ) data = window[‘cf7_2_post_9543a23950’];
fname = ‘<input type=”hidden” name=”_cf72post_nonce” value=”cf7_2_post_9543a23950″ />’;
cf7Form.find(‘input[name=_wpcf7]’).parent().append(fname);
if(0 === data.length){
cf7Form.trigger(“cf7_2_post_9543a23950”, data);
return false;
}
fname = JSON.parse(data.menu_283);
cf7Form.find(‘select[name=menu-283]’).addClass(‘js-select2’).append(fname);
$(“.js-select2″, cf7Form).each(function(){
$(this).select2();
})
if(data.map_post_id !== undefined){
fname = ‘<input type=”hidden” name=”_map_post_id” id=”cf2_2_post_id” value=”‘ + data.map_post_id + ‘” />’;
cf7Form.find(‘input[name=_wpcf7]’).parent().append(fname);
}
fname = ‘<input type=”hidden” name=”_map_author” id=”cf7_2_post_user” value=”1″ />’;
cf7Form.find(‘input[name=_wpcf7]’).parent().append(fname);
/* trigger the formMapped event to let other scripts that the form is now ready */
cf7Form.trigger(“cf7_2_post_9543a23950”, data);
//console.log(‘cf7_2_post_9543a23950 form ready’);
}//end preloadForm()
}); //document ready
})(); //call local function to execute it.
})( jQuery );Forum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.I created a normal dropdown menu in the form with no options and mapped it to the taxonomy which has categories with terms in it, but in the frontend, the dropdown doesn’t show any option. Is there anything I missed? Thank you so much for your time sir.
Mapping Dashboard: https://i.imgur.com/VolUZWZ.png
Frontend: https://i.imgur.com/i37bJiC.pngForum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.Looks like I messed up the question. Here it is simpler terms:
I have displayed dynamic dropdown using CF7 Smart Grid Design Extension on the frontend. Using this plugin now I want to map it to custom taxonomy i.e. Categories. But in the dashboard only two option is displayed i.e checkbox and filter option, in which I wanted Dynamic Dropdown. What did I miss here?Forum: Plugins
In reply to: [Post My CF7 Form] Wanted to map dynamic dropdown.https://i.imgur.com/k9NYhz6.png Here is the dashboard.
Thank you so much Aurovrata.
I solved it myself. Anyone wandering here use _wp_attachment_image_alt in helper function.
Okay I get it. I will be buying the plugin then. I have another question for you. I have been working on a site and it has so many images already uploaded whose alt text needs to be updated. Is there any way to update those alt text in bulk? Thank you.
- This reply was modified 5 years, 9 months ago by wpsubash.