d-media
Forum Replies Created
-
Forum: Plugins
In reply to: [OptionTree] Sanitize & PerformanceMoved this question to the right place: https://github.com/valendesigns/option-tree/issues/257
Forum: Plugins
In reply to: [Google +1 button automator] Google 1 button showing everywhereHi,
You can limit showing the Google +1 button to single pages/posts only.
Please check the top checkbox in the plugin settings called “Only show button on single post pages (ea. button doesn’t show up in loops)”
If this doens’t solve your needs please let us know.
Mvgr, Martijn
Forum: Plugins
In reply to: [Email Before Download] unwanted inline message (feature request)It’s in your plugins code:
email-before-download.php, around line 672.
$cf7->additional_settings .= "\n". "on_sent_ok: \"document.getElementById('wpm_download_$dId').style.display = 'inline'; document.getElementById('wpm_download_$dId').innerHTML='<strong>The link to the file(s) has been emailed to you</strong>.'; \"";Hi girlapp,
I also noticed the links stopped working. Thanks for your post so i know how to get around the problem (disabling accordion mode)
To the developer: I’m guessing the problem is probably coming from an preventDefault() that’s not targeted very well. Should only target titles. Not FAQ content. Could you please fix this.
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply with LinkedIn Not Working on IEYes, had no problem: http://imgur.com/2jKTCsh
Maybe check your network in the dev. tools or errors :sForum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply with LinkedIn Not Working on IEI have no problems in IE10 on your page. Either logged in or out.
Could you please check that you have the latest version. Cleared the cache. Or other (page) errors occur ?
Please check your HTML code for errors.
IE is reporting an issue with the doctype and a broken (because of commenting):</li>--> </ul>Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingHi konstanta,
Thanks for reporting thing. Could you let me know which browser + version(s) you are having problems with ?
And could you also check if the button displays shows on http://developer.linkedin.com/apply-linkedin using the same browser ?
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply with LinkedIn Not Working on IEHi Asitha,
Thanks for reporting thing. Could you let me know which IE version(s) you are having problems with ?
And could you also check if the button displays shows on http://developer.linkedin.com/apply-linkedin using the same browser ?
Closed after 12 months of no anwser.
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingI’ll have to take a deeper look into the problem.
However due to vacation you can expect a reply in the end of june.Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingCould you make sure to update the plugin the the latest version.
While viewing your page i get some javascript errors, also one saying in.js (linkedin) is loaded twice. Are you using other linkedin plugins or functionality ?
Forum: Plugins
In reply to: [WooCommerce] Accessing external existing databasesThanks for the reply.
We’re gonna do some import testing next week. To see how it will hold up 😉
If we have any interesting findings/questions we’ll let you know.Forum: Plugins
In reply to: [WooCommerce] Accessing external existing databasesThanks for the quick reply,
Unfortunately scenario 2 is a probably a no-go for us, since the number of products is quite large (around 600.000-800.000). I haven’t tested the performance, but with the way WP queries it will probably give headaches.
That’s why i want to query/select as specific as i can and go for scenario one. I know i can code it, although it would take a lot of time like you said. But the issue is that i don’t want to core-hack WP or woocommerce. So i was trying to find hooks where i could place my code without affecting the internals as much as i could.
The initial simple thought was: Hook the “get categories” , hook “get posts/products” functions. get the products and return them as objects, and won’t let WP/Woocommerce know..
Forum: Plugins
In reply to: [WooCommerce] Accessing external existing databasesSince i’ve already hijacked the thread i’ll elaborate on what i’m trying to achieve:
What i have:
– basic WordPress install with woocommerce installed on a local database
– External database with products/categories/productinfo. for ease, let’s say it’s just one table where each product is a row.What i want:
– To show the categories/products i have in the external database to show up in my woocommerce site.
For woocommerce they should be external products, with just a title, image, link to another site.How i thought to achieve this:
For example on a category page, woocommerce loops through the posts(products) to show them. I want to keep using the wp_query for the loop and th eloop in general, keeping the woocommerce templates intact.
So i thought hooking the wp_query, and instead of getting intrenal produts, i have some of my own code making a connecting to the other database, getting the produts, and converting them to objects wordpress/woocommerce can use in the loop.Hope you can give me some pointers, much appreciated,
Forum: Plugins
In reply to: [WooCommerce] Accessing external existing databasesBut i can’t pass arguments to the query that would be used to query another external database right?
How would you see that work?