andresgh
Forum Replies Created
-
Decided to revert back to a previous version like mentioned on https://www.ads-software.com/support/topic/bug-datepicker-in-v1-4-4-seems-to-be-broken/ and it seems to have fixed it for me as well.
Forum: Plugins
In reply to: [Optima Express + MarketBoost IDX Plugin] Property images not workingCertainly the duplicate bootstrap.js was causing the issues.
Thanks,
AndyForum: Plugins
In reply to: [The Events Calendar] 404 when selecting page slugHello Barry,
I gave up on the calendar since the client decided to use another system for their events.
Andy
Forum: Plugins
In reply to: [Search Everything] Exclusion Doesn't WorkForum: Plugins
In reply to: [Search Everything] Exclusion Doesn't WorkWell I’m tryin to hide the home page from the search (since it has most of the keywords people are searching).Took a screenshot of the settings. Hope it helps.
https://www.ezdrone.com/?s=kit
Search Everything 7.0.4Andy
Forum: Plugins
In reply to: [The Events Calendar] 404 when selecting page slugTried that long time ago. In case it was a custom post type issue with the permalinks but that didn’t work.
I get the 404 page on everything. When I select a page slug I will get the 404 title and body class. Deactivate the plugin and no more 404 on title.
Forum: Plugins
In reply to: [The Events Calendar] 404 when selecting page slugSame thing. The image I attached shows the body class’ and the error 404 page didn’t disappear when I was using the default 2014 theme. The page title is 404 no matter what theme I try.
Forum: Plugins
In reply to: [The Events Calendar] 404 when selecting page slugEven on single events.
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] Broken codeNo I decided to get the Google Translate widget, styled and didn’t brake names and add broken code within words.
I would love to give it another try.
Forum: Hacks
In reply to: Sorting Doesn't work after using %s on queryHello ClaytonJames,
Thanks for the help, I didn’t find anything to help me (well maybe some ideas).What I did was add:
if( empty($orderby) && empty($order)){ /* * I know that initial load of the table will not be control by the user * that its save to assume they wont be able to inject anything */ $orderby = !empty( $_GET["orderby"] ) ? mysql_real_escape_string( $_GET["orderby"] ) : " comment_date "; $order = !empty( $_GET["order"] ) ? mysql_real_escape_string( $_GET["order"] ): "desc"; $query .= " ORDER BY $orderby $order "; }else{ /* * But when they sort the user can see the variables in the URL * that's when we stick with WordPress */ $query .= " ORDER BY %s %s "; }
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Forum: Installing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()That’s an error from the plugin.
If you give me the entire error I might be able to come up with some solution.Forum: Installing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()Its the first time I do it this way and I see how its more secure, so hopefully its not wrong. If it’s let me know.
For your example:$wpdb->query($wpdb->prepare(“INSERT INTO {$this->ucan_db_submissions} (type,name,email,postid) VALUES (‘{$type}’, ‘{$name}’, ‘{$email}’, ‘{$postid}’)”));
would become something like…
$wpdb->query( $wpdb->prepare(“INSERT INTO {$this->ucan_db_submissions} (type,name,email,postid) VALUES (‘{%d}’, ‘{%s}’, ‘{%d}’, ‘{%s}’)”, $type, $name, $email, $postid ) );
Im still not sure how they handle more than 2 variables but I tried %d & %s as needed so twice. I hope this helps.
Hello I was able to use the video as a background of an element in the home page by using
<a id="bgndVideo" href="https://www.youtube.com/watch?v=ScNNfyq3d_w" class="movie {opacity:1, isBgndMovie:{width:460,mute:true}, ID:'control',showControls:'true', ratio:'16/9',quality:'default'}"></a>
the only place I can’t get it to work in is mobile devices, my biggest target in mobile is iPad 3, is this the bug you were talking about?
If not is there a way to make it work in mobile devices?