maddoctor
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] autoptimize blocking only some users?You are correct, it seems it’s not an Autoptimize issue because it works fine with Autoptimize on, it’s Async JavaScript that is the problem. Gonna post on that Support instead. Thanks!
Καλησπ?ρα σα?, ?ταν θ?μα λ?θο? links, ε?χε γ?νει αλλαγ? σε https και ε?χαν ακ?μα τα http links
Forum: Plugins
In reply to: [Nextend Accordion Menu] Get menu item classThank you for the quick replay it works flawlessly!
Forum: Plugins
In reply to: [wpForo Forum] Edit posts from the dashboardHey sorry for the delayed response, I was asking because someone posted -something- on a thread that crashed it. I was getting a white page, but not a fatal error because the admin bar was visible, so I thought editing the post from the dashboard would solve the issue. I couldn’t even access the “edit” button from the Frontend to solve the issue, due to the white page. It was also only on that particular thread, the rest of the forum worked just fine which is why I suspected someone posted something that caused the problem.
In the end I deleted the most recent posts on that thread from the database and it got fixed, sadly I didn’t keep the content to see what exactly might’ve caused that weird white page
Yes, the Post Form sample has the category. I was looking at the Sample Form but it did not have one. I will try that “Other” trick because I also want users to be able to enter new categories
Forum: Plugins
In reply to: [Login Widget With Shortcode] jQUery.cookie is not a functionI had the same problem, went back to 6.0.0 and it is now fixed, waiting for a proper update
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Import locationsThank you for the answers!
Forum: Plugins
In reply to: [Social Login] Registration linkIt’s an offline development website at the moment
I want to add a button similar to the “Create my free account” that you have on your own page: https://app.oneall.com/signup/wp that will lead to the registration page.
Currently the widget is either for log-ins only or for connections with different social media. I just want a simple link for a normal wordpress registration, without connecting to social media (for those that need it, most people will connect with social media anyway)
Forum: Plugins
In reply to: [iframe] iframe links opening to parent windowThanks for the reply but that’s not helping me. The page I have in the iframe is from the same website and I strip the header/footer/sidebar so they are not duplicates. Removing the header means I cannot add anything to the head (it will be stripped) so I was wondering if the plugin had a setting that made links appear on the parent window. Apparently it does not
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] custom field translationTook me so long to reply here!
There is no wpml-config.xml in the theme files.
The main problem is I can’t find these custom fields on the WPML->Settings->custom field settings, I can find most other custom fields but not the one I want.Can I make it available there or it’s something only the theme developer can do?
Forum: Plugins
In reply to: [Admin Tools] I think I’m blocked?I thought some renaming would solve this!
I changed the entire plugin folder name then re-uploaded and all is fine!Forum: Plugins
In reply to: [Custom Post Type UI] Post and Custom Post categoriesThank you for the answer! It works as expected. I have one question though, I have a custom field (using Advanced Custom Fields) in my custom post type called “Available”, how can I make only posts that have Available:yes appear on the archive? Because with that code all custom posts appear.
I figure I need to use something like this:
$query->query_vars[“meta_key”] = ‘available’;
$query->query_vars[“meta_value”] = ‘yes’;And modify this part of the code:
$query->set(
‘post_type’,
array_merge(
array( ‘post’ ),
$cptui_post_types
)
);but where exactly?
- This reply was modified 6 years, 4 months ago by maddoctor.
I’m confused, from WPML support they told me that it is already compatible in some way, or at least that people use Email Subscribers combined with WPML successfully.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Using Posts ShortcodeThank you!
Forum: Plugins
In reply to: [Advanced Woo Search] Not workingNevermind I found what is happening.
This line: if ( aws_is_plugin_active( ‘woocommerce/woocommerce.php’
checks if woocommerce is installed and active, however since I performed a manual installation of woocommerce I had this folder: woocommerce-2.6.14
I changed the line to if ( aws_is_plugin_active( ‘woocommerce-2.6.14/woocommerce.php’
and all is fine!