iohannis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Materialis] CF7 checkbox and radio buttons broken stylingI also tried looking for a checkbox in your demos, but it seems like sloppy work, since most demos link to the Demo 5 link (several of them) and none seem to have forms as examples.
Forum: Themes and Templates
In reply to: [Materialis] CF7 checkbox and radio buttons broken stylingActually I just thought of that the submit button is probably disabled because the acceptance checkbox hasn’t been ticked. But the styling of the disabled submit button is off (in my opinion), plus that checkboxes and radio buttons don’t work, so you can’t actually accept, to enable the submit button.
Forum: Plugins
In reply to: [Search & Filter] Plugin not using taxonomy slug after update@designsandcode glad to be of help ??
Forum: Plugins
In reply to: [Search & Filter] Plugin not using taxonomy slug after updateA mistyping above, the
$tax_slug
is a variable I removed again. Updated:if(get_option('permalink_structure')&&($taxcount==0)) { $key_taxonomy = get_taxonomy( $key ); $tax_path = (isset($key_taxonomy->rewrite)&&isset($key_taxonomy->rewrite['slug'])) ? $key_taxonomy->rewrite['slug']."/".$taxs."/" : $tax_path = $key."/".$taxs."/"; $this->urlparams .= $tax_path; }
Forum: Plugins
In reply to: [Search & Filter] Plugin not using taxonomy slug after updateI think I solved this, by editing the search-filter.php file, around line 865:
//**due to some new wierd rewrite in WordPress, the first taxonomy which get rewritten to /taxonomyname/taxonomyvalue only uses the first value of an array - so do it manually if(get_option('permalink_structure')&&($taxcount==0)) { $key_taxonomy = get_taxonomy( $key ); // Get the taxonomy to see if there is a rewrite slug $tax_path = (isset($key_taxonomy->rewrite)&&isset($key_taxonomy->rewrite['slug'])) ? $tax_slug."/".$taxs."/" : $key."/".$taxs."/"; $this->urlparams .= $tax_path; } else { if(!$this->hasqmark) { $this->urlparams .= "?"; $this->hasqmark = true; } else { $this->urlparams .= "&"; } $this->urlparams .= $key."=".$taxs; }
Previously, the slug was simply
$tax_path = $key."/".$taxs."/";
– not looking for the rewrite slug (just taking the param from the request).I hope this can be of help – and hopefully the plugin can be amended for the next version?
Forum: Plugins
In reply to: [Search & Filter] Plugin not using taxonomy slug after updateFor clarification, this is for custom taxonomies with rewrite->slug defined, different than the taxonomy slug itself.
Forum: Plugins
In reply to: [Search & Filter] Plugin not using taxonomy slug after updateHere is an example page, using the shortcode in a widget to the right:
https://www.amaravati.org/audio/
Select any item from the dropdowns and submit, the redirect is using the name of each custom taxonomy (such as fpmtp_speakers should use the slug ‘speakers’).
The site is using the permalink structure /%postname%/
Saving permalinks again does not help.
Forum: Plugins
In reply to: [Admin Page Framework] Multiple media uploads excludes .mobi filesAdded a review. Thanks.
Forum: Plugins
In reply to: [Admin Page Framework] Multiple media uploads excludes .mobi filesThank you very much. I can verify that it works.
Forum: Plugins
In reply to: [Admin Page Framework] Multiple media uploads excludes .mobi filesHi,
Yes it happens whenever 3 or more files are selected. Apparently, MOBI files are put last on the list, so that’s more likely why it’s excluded, rather than there being an issue with the mimetype, specifically.
Forum: Plugins
In reply to: [Contact Form 7] Validation error occurred. No specification on the error(s)I found the issue by looking at the JSON response in AJAX, it had a validation check designed for the non-AJAX form, which fired for the other two forms as well.
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Conversion tracking code integrationThanks for replying. It’s a conversion code from Google Adwords, that needs to be triggered on successful signup.
This is sample code from Google:
<!-- Google Code for Purchase Conversion Page --> <script type="text/javascript"> /* <![CDATA[ */ var google_conversion_id = 1234567890; var google_conversion_language = "en_US"; var google_conversion_format = "1"; var google_conversion_color = "666666"; var google_conversion_label = "Purchase"; if (10.0) { var google_conversion_value = 10.0 } /* ]]> */ </script> <script type="text/javascript" src="https://www.googleadservices.com/pagead/ conversion.js"> </script> <noscript> <img height=1 width=1 border=0 src="https://www.googleadservices.com/pagead/ conversion/1234567890/ ?value=10.0&label=Purchase&script=0"> </noscript>
Perhaps I could do a callback to the image url, somehow? I don’t know how to trigger the callback without altering your plugin…(?)
Forum: Plugins
In reply to: [MP3-jPlayer] Track numbers all '1' after upgradeWe are using a shortcode like this, about 80 times on a page:
[mp3j track=”Some Text here@https://www.example-url.com/podcastfiles/files/filename.mp3″ caption=”The caption text” play=”Play”]
This is the output of each shortcode (example texts):
<div style="font-size:14px; line-height:22px !important; margin:0 !important;"><span id="playpause_wrap_mp3j_0" class="wrap_inline_mp3j" style="font-weight:700;"><span class="group_wrap"><span class="bars_mp3j"><span class="loadB_mp3j" id="load_mp3j_0"></span><span class="posbarB_mp3j" id="posbar_mp3j_0"></span></span><span class="T_mp3j" id="T_mp3j_0">1. Some Text here<span style="font-size:.75em;"> - The caption text</span></span><span class="indi_mp3j" id="statusMI_0"></span></span><span class="buttons_mp3j" id="playpause_mp3j_0"> </span></span></div>
Where is the number generated?
Forum: Plugins
In reply to: [W3 Total Cache] A disaster after the latest UpgradeSame here, except only on three of 12 upgraded sites (different web hosts, though). Would be great to get this fixed, since the sites won’t survive without caching…
Forum: Plugins
In reply to: [Solid Mail – SMTP email and logging made by SolidWP] "Some errors occurred!"I ended up just using Configure SMTP, which was faster and easier than trying to get this plugin to work.