surfgatinho
Forum Replies Created
-
OK. Fixed the second issue by adding the following to the JS settings:
/* Live Filter force to reload page */
window.cvp_lf_reload_url = true;https://contentviewspro.com/documentation/article/live-filter-shortcode-is-visible-in-filter-result/
Found the answer here:
https://contentviewspro.com/documentation/article/set-dynamic-value-filtering-custom-field/
EDIT: This creates another problem. Now when I use the live filter I get no results. The value set for the custom field seems to get lost every time.
Forum: Plugins
In reply to: [FG Drupal to WordPress] Exclude content typeThanks. Will have a look
Forum: Plugins
In reply to: [WP Category Permalink] Review reuestWhy has noone else mentioned this anywhere? Is it only 2 or 3 of us can see this??
I’ve had this on 2 sites I run and have no idea where it has come from
Forum: Plugins
In reply to: [Awesome Weather Widget] "No weather information available"I’m getting “No weather information available” after updating (had stopped working before anyway)
I’m using the OpenWeatherMap city ID and have tried a couple of locations, still nothing.
This is after adding an api key…Forum: Requests and Feedback
In reply to: A 'Disable Comments' Setting. Entirely, permanently.Completely agree with OP.
I have set all the settings to prevent comments yet I get spam posts from virtually all my WP sites. This is a bug IMO.
If disabling comments and requiring user registration does not prevent comments, something is broke.As for using a plugin?! Why should I need a third party plugin to do something WP should be doing.
Renaming wp-comments-post.php doesn’t seem like a great solution either, as you will need to do this every update I imagine.
Come on WP, move with the times. Probably most of the sites running WP are not “blogs” any more. You wouldn’t have this problem with Drupal ??
Forum: Plugins
In reply to: [SEO Ultimate] Link Mask Generator Alias URL not workingCan confirm this is an issue with nginx.
Given Plesk now ships with nginx this could be an increasingly common problem.
Forum: Plugins
In reply to: Override core function without hackEnded up overriding get_attachment_link instead. There appears to be a filter for it. Don’t 100% understand it but it works!
function custom_get_attachment_link($result='', $id = false) { //NEW CODE IN HERE/////////////////////////////// return apply_filters('custom_get_attachment_link', $link, $id); } add_filter('attachment_link', 'custom_get_attachment_link', 1, 2);
Forum: Themes and Templates
In reply to: How do you overwrite a core function?Hi,
Did you ever work this out. I’ve just spent a day banging my head against the wall trying to overwrite exactly the same function. Trying to make gallery thumbs into page links.
Would really appreciate it if you could help.
Thanks