sohinc
Forum Replies Created
-
Forum: Reviews
In reply to: [AI Engine - The Chatbot, AI Framework & MCP for WordPress] Good but Not@tigroumeow i dont know if there is some kinda bug but i dont see a conversations tab on my end, i see discussion and embeddings tab. If there was this conversations tab and it showed what you are describing, it would allow me to solve a similar problem to what this person is describing.
Forum: Reviews
In reply to: [AI Engine - The Chatbot, AI Framework & MCP for WordPress] Good but Not@tigroumeow where is the conversations tab, you mean the discussions tab?
@mastertheweb given you are 1 out of almost 200 people to give this anything but a 5 star rating goes to show how you completely missed this point of this plugin.
Forum: Plugins
In reply to: [GEO my WP] Address Not Linking if you dont use Geo-Locationwere you able to get any updates on this?
Forum: Plugins
In reply to: [GEO my WP] Address Not Linking if you dont use Geo-LocationHello Eyal, Yes something like that… if you go to my site … http://munchybox.co/ and instead of doing geolocation enter the address 9802 Lakeview Pky Rowlett, TX 75087 and do a search… once the search results comes up click on one of the listing at the listing page look at where it says your location which will be empty since the location doesnt get locked in when you enter your address… now on the flip side… go back to munchybox.co and do geolocation and then if you click on one of the listings that comes up or go to any listing like http://munchybox.co/food/full-menu/pho-twins-full-menu/ you should see your location where it says “your location” so hope this makes sense now and hopefully you can have this resolved. thanks
Forum: Plugins
In reply to: [GEO my WP] Pagination too long problemsbtw my website name is http://munchybox.co/ and so if you do a search on it you will see results you can maybe check that to give me the css selectors since i have tired to get the selectors but it wasnt working for me…. i did manage to get it to work on this page…http://munchybox.co/vendor/official-restaurant-menus/ but not when using your plugin… the css selectors used for the working page are this…
Content Selector: #content
Navigation Selector: .woocommerce-pagination
Next Selector: .woocommerce-pagination a.next
Item Selector: ul.productshope i can get this done. thanks
Forum: Plugins
In reply to: [GEO my WP] Pagination too long problemswould you be able to provide some information on this… i would really like infinite scroll to work with geomywp it would be a very cool feature to have. thanks
Forum: Plugins
In reply to: [GEO my WP] CSV Post Importing Helpyes i import csv into wordpress and yes it will be very helpful if this was added… will it be added as a separate plugin? or will it be part of geomywp main plugin? I did figure out database way of adding products so thats working now so hopefully this locations importer will be easier. thanks
Forum: Plugins
In reply to: [GEO my WP] CSV Post Importing HelpThanks a lot for your reply… Yes i do have coordinates( lat and long) for each product i am trying to upload by csv so please do help me with the custom fields to make it easy as right now i have to do double the work by having to download my database modify it and then upload it so dropping this in custom fields would help a lot. thanks
Forum: Plugins
In reply to: [GEO my WP] Embedding Current Location Formok you can mark this as resolved since i was downloaded your add on for this plugin called current location forms so in that you do have the default style which is responsive so that does the trick. thanks
Forum: Plugins
In reply to: [GEO my WP] Embedding Current Location Formok thanks a lot… is there a way i can make the lightbox show up right next to where the update address link was clicked… I dont like the idea of a pop up on top of the page as it doesnt work out too well on mobile devices so would be great if i could just make the lighbox show up right next to where the link was clicked. thanks
Forum: Plugins
In reply to: [GEO my WP] removing url from current location SHORTCODEi think i figured this out… i just created shortcodes based on your info and then used them and it works perfectly.
//[foobarstreet]
function foobarstreet_func( $atts ){
return urldecode($_COOKIE[‘gmw_street’]);
}
add_shortcode( ‘foobarstreet’, ‘foobarstreet_func’ );//[foobarcity]
function foobarcity_func( $atts ){
return urldecode($_COOKIE[‘gmw_city’]);
}
add_shortcode( ‘foobarcity’, ‘foobarcity_func’ );//[foobarstate]
function foobarstate_func( $atts ){
return urldecode($_COOKIE[‘gmw_state’]);
}
add_shortcode( ‘foobarstate’, ‘foobarstate_func’ );//[foobarzip]
function foobarzip_func( $atts ){
return urldecode($_COOKIE[‘gmw_zipcode’]);
}
add_shortcode( ‘foobarzip’, ‘foobarzip_func’ );thanks
Forum: Plugins
In reply to: [GEO my WP] removing url from current location SHORTCODEthanks a lot for this… but i am not very sure how i would insert the code you gave into this .. <div class=”embed” target=”web” width=”2000px” address=”123 main st” city=”dallas” state=”tx” zip=”75040″></div> … sorry my knowledge about php is limited so if you can sort of guide me. thanks
Forum: Plugins
In reply to: [GEO my WP] removing url from current location SHORTCODEbasically i just need to be able to get the current location of the user without the url link so i can use the shortcode in my script so please let me know what modifications i should make to achieve this. thanks
Forum: Plugins
In reply to: [GEO my WP] removing url from current location SHORTCODEyes