I already tried uninstalling it and clearing cache of my website, but nothing works.
Thank you so much
Would it be possible to check such a patch in any way? I would like to know how to accomplish this in the WordPress application if it is possible.
]]>Thanks for this !
]]>is there any plugin that produces the same result like the website below, for the quest room, penthouse, and suites, for portfolio items?
https://hotelicon.com/
What i am searching for, is to have a 3-5 column gallery and on hover of each item to make it full width, as in the example.
any suggestions?
]]>Sincerely,
Bastien
https://www.ads-software.com/plugins/plugin-organizer/
]]>require('../../../wp-config.php');
$wp->init();
$wp->parse_request();
$wp->query_posts();
$wp->register_globals();
// do_shortcode
$plug = '[osm_map
lat="43.70657"
long="-1.0562553"
zoom="6"
width="250"
height="250"
marker_file="https://localhost/wp/wp-content/plugins/hdimngs/resources/data/adresse.txt"
type="AllOsm"
map_border="medium solid blue"
]';
echo do_shortcode($plug);
The border of the map is displayed correctly but I do not have the content: icons, map drawing, knurr, ….
Remark : Yet if I put the code above (from the line ‘/ / do_shortcode’) directly into a wordpress page it works well
Do you have an idea ?
thank you
]]>I am new to wordpress plugin development and making a plugin which essentially gives me a widget to add in my sidebar. What I want to do is to add a title, then an image and a phone number and some text in the widget. Now the image will be hardcoded and user need not upload that. I have created my plugin and it is working fine. But I can’t display the image.
This is the code relevant to getting the image displayed:
function widget($args,$instance)
{
extract($args, EXTR_SKIP);
$title = ($instance['title'])? $instance['title']: 'Call Us Now';
$phone =($instance['phone']) ? $instance['phone']:'+91 9989976543';
$body = ($instance['body'])? $instance['body']: 'Call now text';
?>
<?php echo $before_widget; ?>
<?php echo $before_title. $title. $after_title ?>
<img src="icon.png"/>
<p><?php echo $body?></p>
<?php
}
My plugin directory structure is like this:
-plugin_file.php
-style.css
-icon.png
Can someone tell me how to get this image icon.png inserted in my frontend display of plugin. It basically adds a Call Us block in the sidebar which says your number besides an icon and some text.
Thanks,
]]>