ip11166
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabby Responsive Tabs] tabby conflicts with css to hover table row/columnThanks
Thanks, Tom.
Where can this global change be made?Forum: Plugins
In reply to: [Content Reveal] How to set hidden part revealed by default?Great, thanks!
Thank you.
Is it possible to hide/disable SL/FS/Info/FileName (1/5) using custom CSS or changing plugin’s JS?When I set Title and Description to Empty the left side corner still has the “FileName (CurrentFile#/TotalFiles#). I can hide it by changing the button text color to match the background color – however it still keeps the placeholder space for this filename. Is it possible to get rid of it using using custom CSS or changing plugin’s JS?
Forum: Plugins
In reply to: [Gmedia Photo Gallery] Is it possible to copy/clone the gallery?Thank you!
Forum: Plugins
In reply to: [Gmedia Photo Gallery] does not delete files and albumsJust to confirm: any delete does not work, neither for files, nor for libraries, albums, etc.
Forum: Plugins
In reply to: [Gmedia Photo Gallery] does not delete files and albumsIt did not help. I just sent you requied info via http://codeasily.com/contact/
Forum: Plugins
In reply to: [Content Reveal] How to set hidden part revealed by default?What I did as a temp solution is to move “or ( $default == ” )” from “hide” clause to a “show” clause in your includes/generate-reveal-code.php
It look like this now// Set up the default – hide or show
if ( ( $page_default == ” ) or ( $page_default == ‘off’) ) {
$default = strtolower( $default );
} else {
$default = $page_default;
}
if ( ( $default == ‘hide’ ) or ( $page_default == ‘hide’ ) ) {
$default = ‘none’;
$image_num = 1;
$the_title = $title1;
$alt_text = ‘Reveal content’;
} else {
if ( ( $default == ‘show’ ) or ( $default == ” ) or ( $page_default == ‘show’ ) ) {
$default = ‘block’;
$image_num = 2;
$the_title = $title2;
$alt_text = ‘Hide content’;
} else {
$error = report_acr_error( __( “Invalid default – must be blank, ‘show’ or ‘hide'”, ‘content-reveal’ ), $plugin );
}
}However, I understand that when I update your plugin this change will be overwritten. How would I better do this to keep constant without using hooks, code snippets or functionality plugins?
Maybe you could add (or already have) changing the default as an option setting?
Forum: Plugins
In reply to: [Content Reveal] How to set hidden part revealed by default?Just to clarify that I saw in your Notes that it is possible for each individual reveal shortcode 🙂
[reveal heading=’bla’ id=’id1′ default=’show’]Bla[/reveal]
However, what I need to do is: instead of changing this in each individual reveal code, is it possible to change the site global settings so that all reveal content is shown by default?
This could save a lot of changes in hundreds of already inserted reveal shortcodes.
Thanks Tom 🙂
I think I figured out how to do this:
This custom css worked for me
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}Please let me know if you would suggest doing it in a better way and if it is within the limit of free support, which I value a lot!
Thank you, Tom!
sorry, duplicate entry 🙂
It works. What if I need to use both feet ‘ and inches ” within the quotes?
[reveal heading=’✓ Size up to 1′ 1″‘ id=”id1″]More text.[/reveal]
There should be some way to escape special control character?I want to open this pop-up from one page when user clicks on the link on that page.