shadowq
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Error not showing when capturing more than 115%Hi there, thanks for the replies. Missed the notifications, sorry.
Forum: Plugins
In reply to: [WooCommerce] Square: test_connection() on every page loadThanks! Sorry for not posting in the correct forum. Appreciate the quick reply π
Forum: Plugins
In reply to: [BulkGate SMS Plugin for WooCommerce] Custom VariablesThanks! Email sent.
I’ve fixed this, in case this helps someone else.
My MP3 URLs being filtered with relative, not absolute (didn’t include the domain). If lines 89-90 in map_download.php weren’t commented out, the error would have been easier to spot (“File doesn’t exist”).I just added a check to see if the URL requested was relative, if so- then add the relevant prefix.
After line 29:
if(substr($file_url,0,1) == “/”) $file_url = (($_SERVER[‘HTTPS’] == ‘on’ || $_SERVER[‘HTTPS’] == 1) || isset($_SERVER[‘HTTP_X_FORWARDED_PROTO’]) && $_SERVER[‘HTTP_X_FORWARDED_PROTO’] == ‘https’ ? “https://” : “http://”) . $_SERVER[‘HTTP_HOST’] . ” . $file_url;Hi there again,
I think I misunderstood what the “Ignore parent click” option does. I assumed the option would prevent anything from happening at all with the parent click (including the closing of the menu). However, it seems that it’s only ignoring the parent href.
I have 3 parent categories, with several pages under each. The pages to go different pages in wordpress. If I disable the option to “Close menu on link clicks” it works fine. However, on other pages I have a menu that uses link clicks to jump around the page. With the option disabled it doesn’t work correctly on that page as the menu stays open.
You can see this behaviour at http://allc.asia/leadership-essentials/ (with screen < 980px)
Thanks,
Jarrod.Hi there,
Thanks for the reply. I’m 100% sure it’s ticked. When unticked, the class isn’t added nor is “preventDefault” being bound to the parent “a” element. Hence my confusion!
I’ll send an email through to support at responsive.menu.
Thanks,
Jarrod.Thanks!
I can second this. Search doesn’t appear to work.
Forum: Plugins
In reply to: [Syndicate Out] Delete posts on syndicate blogsHi,
Found this reply in my inbox and thought I should at least thank you for your reply!
I can’t remember what I did now, but I do know that I modified some things to add in the hooks to solve problem 1, 2 and 4 (and subsequently, 5). However, from memory I don’t think I solved 3.To elaborate, once you selected on the right what syndicate group you wanted that post to belong to and saved the post, it’s stuck with those syndicate group settings (that is, you can’t choose for that post to be syndicated with another group without creating a new post).
Thanks again for your reply, and a good plugin.
Jarrod.For those interested- I’ve documented a quick hack at https://getsatisfaction.com/truthmedia/topics/forms_within_sidebar_widget
Forum: Plugins
In reply to: [Plugin: The Events Calendar] template issueHey Pankus & ncitravel,
Just found this thread- and without too much mucking around (time is money!) I found that it’s easy enough to make it work with Atahualpa.
Simply do as Shaine has said
Create a new folder called “events” in your template directory and copy over the following files from within the plugin folder (simple-events/views/):
* gridview.php
* list.php
* single.phpEdit all of the above 3 files, in the new location, and perform the two actions below on each file-
Replace
include (TEMPLATEPATH.'/header.php');
withinclude (TEMPLATEPATH . '/functions/bfa_get_options.php');
get_header();Replace
include (TEMPLATEPATH.'/footer.php');
withget_footer();All done!
ShadowQ.