roimediaworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Directions not workingI’m sorry to hear about your troubles with getting that to work. We’re doing some upgrades to this plugin (for the first time in a >year) next month, so we’re happy to address this.
When you say:
wont let me click on “directions”
Do you mean after you’ve properly added your address in the wp-admin panel, when you mouse-over the “Directions” button, you’re unable to click, the cursor doesn’t change to a pointer/click-action, and your browsers status bar doesn’t show the destination of the link?
If so, there’s likely a CSS issue that has to do with vertical positioning or a CSS conflict of the tags we used. If you could please provide details about what theme you’re using, or share your website link (if you don’t want to share link public you can email us at [email protected]), we might be able to target the issue.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Plugin not showingSorry to read about this.
As this is a dated post, could you please provide more information about what your theme is? It is most likely a theme conflict that we didn’t prepare for.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Plugin Displaying on desk versionI’ve visited the URL you provided and it seems you’ve got the plugins settings to show the buttons when the width of the browser is at
1081px
wide.Toggle this value lower with the Define Mobile Size (px) input so something lower like 780px or 414px and it will only show when the width is less than that.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Plugin inop in chrome and safariSorry you experienced this.
It is most likely a theme conflict. Could you please provide or PM us more information about your what themes and plugins you’re using so we can better understand what caused the issue.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] adding analyticsNo, not currently. We will keep that in mind.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] MultilingualWe will add this in the next version. Thank you for bringing it to our attention.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] two address on google mapNot currently possible.
Forum: Plugins
In reply to: [Head, Footer and Post Injections] Option to turn off PHP execThanks for you quick reply and willingness to add this. The following worked for me:
# plugin.php:hefo_wp_head_post() if (apply_filters('hefo_php_exec', true)) { ob_start(); eval('?>' . $buffer); ob_end_flush(); } else { echo $buffer; } # plugin.php:hefo_wp_footer() if (apply_filters('hefo_php_exec', true)) { ob_start(); eval('?>' . $buffer); ob_end_flush(); } else { echo $buffer; } # plugin.php:hefo_execute() if (apply_filters('hefo_php_exec', true)) { ob_start(); eval('?>' . $buffer); $buffer = ob_get_clean(); } return $buffer; # options.php:371 <p> <?php if (apply_filters('hefo_php_exec', true)) { _e('PHP is allowed on textareas below.'); } else { _e('PHP is not allowed on textareas below.'); } ?> </p>
Then in my theme:
add_filter( 'hefo_php_exec', create_function('',"return false;"));
- This reply was modified 7 years, 11 months ago by roimediaworks.
- This reply was modified 7 years, 11 months ago by roimediaworks.
Forum: Plugins
In reply to: [Broken Link Checker] HTTP Code 0 on internal linksSolved:
curl()
wasn’t installed on serverB
I didn’t turn on DEBUG so I’m not sure if plugin would of told me this or not.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] map showing a different business nameI’m sorry to hear about your troubles with getting that to work.
Our listings are built via assembling the back-end address input values, basically just:
https://maps.google.com/?q=(street), (city), (region), (country), (zip/postal)
Anything google does there after is out of our hands – although maybe to let Google know (incase there’s a problem with this address) I may suggest putting your business title as a prefix in the first Address field, i.e. instead of “123 Baker St,” do “Business Name, 123 Baker St.”
- This reply was modified 8 years, 5 months ago by roimediaworks.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Quick QuestionNo it does not allow a PAGE instead of a Google Map link. However we will consider this for future updates.
Off the top of my head, you could do something in jQuery like
`
jQuery(document).ready(function() {
jQuery(‘#map_now’).click(function(){
window.location.href = ‘https://example.com/contact’;
return false;
})
});
`
I didn’t test that code, but it’s an idea
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Can we show only the call button?Yes.
Leaving the ADDRESS details blank, and the PHONE entered, only the call button will show.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Plugin Not DisplayingNope, just the free version.
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Plugin Not DisplayingAlrighty! If there’s anything else, just let us know!
Forum: Plugins
In reply to: [Mobile Call Now & Map Buttons] Blank screen on mobile websiteSorry to hear this occurred and thank you for bringing this to our attention. We haven’t experienced this issue but given the wide range of plugins and setups, we expected a few tickets like this.
It sounds like a conflict. If you could please enable DEBUG via wp-config.php, an error would show on the website instead of blank screen. paste that error here (removing /html/dir/ paths for your own privacy ?? – that would be the easiest way to troubleshoot this issue.
Thank you again for your time, very much appreciated