Bring Your Business to Life › Support › Enter fullscreen mode using javascript
Forum Replies Created
- AuthorPosts
-
Xpark Media
KeymasterWe also released a new version of the plugin, see if that works better for you.
Xpark Media
KeymasterThe look of the plugin some times is modified by the theme. Add this line of code to the theme’s style.css. Change the color as needed.
`div.pop-inside { background-color: #fff; }
Xpark Media
KeymasterWhat other plugins you have installed, what version of the plugin and WordPress are you using? and you add the message you are receiving from Google.
Xpark Media
Keymasterare you sure it comes from the Image Store plugin? we are using the same plugin in this site and we have not received any notification. Could you please search a link to your site.
Xpark Media
Keymasterare you sure it comes from the Image Store plugin? we are using the same plugin in this site and we have not received any notification. Could you please search a link to your site.
Xpark Media
KeymasterThe plugin it is Query heavy, specially if you are tracking pageviews instead of visits. It uses post request to accurate register the views.
There is a database cache plugin that my help you but your pageviews/visits will not be accurate. You could also use a hook to change the request and the database write. If you already using memecache you will have to change the request method also.
Xpark Media
KeymasterNo, there should not be a problem. Paypal should allow access to the development site to test before the implementation. If you see an issue please report back.
Xpark Media
KeymasterWhen is the last time you posted something, check the date range on the widget. You may have to increase the time or add new content.
Xpark Media
KeymasterSee this post No thumbs SAFARI
Xpark Media
KeymasterWhat version of safari are you using? this is what we see. Could this be a cache issue on the server or browser?
Xpark Media
KeymasterXpark Media
KeymasterYes, you should be able to display the views under each post by using get_post_meta() function. bellow is an example.
echo get_post_meta($post_id, '_popular_views', true );
$post_id is the id of your post “_popular_views” is the custom post value added to each post, that is if you did not changed this setting. Otherwise see “Custom Field” field in the widget.
August 22, 2015 at 11:03 am in reply to: How to change names of images in the basket at the end of the process #347520Xpark Media
KeymasterPlease if you add the functionality by all means send it to us and we will add it to the next release. you can send it to [email protected]
Xpark Media
KeymasterThis was caused by a caching system on the server, it was changing the http headers and changing the image content type.
Xpark Media
KeymasterYou will need to create your on plugin and use the plugin hook. Here is a link to the image store documentation
- AuthorPosts