Viewing 15 replies - 1 through 15 (of 15 total)
  • Plugin Author Baden

    (@baden03)

    A Link would help greatly.

    Thread Starter Darwyn43

    (@darwyn43)

    Hey Baden,

    Could you be more specific? This sounds an awful lot like I’m missing something obvious, but I looked in the supporting documentation and couldn’t find anything on “A Link” (or maybe its just a “link?”) What am I missing?

    Just in case, here’s a page that uses a lot of collapse-o-matic: https://www.morgankinney.com/epics/chemical-information-and-the-inner-world/dopamine-goals-dreams-2/dopamine-101/

    Best,
    Morgan

    Plugin Author Baden

    (@baden03)

    Yes, a link to an example page that helps us understand what you are trying to accomplish. The link above was very helpful, thank you.

    OK. So you want to have the Internal Collapse Trigger be able to scroll the page back to the trigger text. Let us play with this a bit and come up with a solution for you.

    Thanks for the feedback, please stand by.

    Thread Starter Darwyn43

    (@darwyn43)

    Haha It was more obvious than I thought!

    No worries, standing by ??

    Thread Starter Darwyn43

    (@darwyn43)

    Hey Baden,

    I thought I’d add an unrelated issue in case you know something about it.

    Since the WP upgrade to 3.5, I’ve been experiencing issues with my content editor (I’m using Ultimate TinyMCE) removing my collapse-o-matic colomat-close code.

    It seems to happen somehow by transitioning between visual and text editor, as the problem appears in the text editor when the code (<span id…class…>Collapse</span>[/expand]) gets replaced with the way that code looks in the visual editor (Collapse[/expand).

    I’m honestly not sure if this is a Ultimate TinyMCE problem or a collapse-o-matic problem, so I’ve posted both in Josh Lobe’s forum and thought I’d mention it here as well. Any thoughts?

    Thanks (Sorry?) for working double duty ??
    Morgan

    Plugin Author Baden

    (@baden03)

    Morgan,

    Regarding the Visual Editor… it’s always best to use the HTML view when working with shortcodes… never sure how the Visual editor mangle things.

    As for the Internal Scroll-To-Trigger, Here is a bit of good news!
    Please download and install version 1.5d from The Plugin Oven: https://plugins.twinpictures.de/plugins/collapse-o-matic/

    As you can see in this demo version 1.5d adds the ability to assign the scroll-to-trigger class to Internal Collapse Triggers. This will automatically scroll the page to the Main Trigger Text.

    Please let us know if this works for you… we hope to release 1.5 next week.

    -Twinpictures

    Thread Starter Darwyn43

    (@darwyn43)

    Baden, you rock! Thanks man, this is EXACTLY what I need.

    I’m aware of the shortcode problem with the visual editor but I didn’t realize that you could actually lose the shortcode by switching between the visual editor and text/html editor. I thought you lost the shortcode code when you updated FROM the visual editor, and I thought I was taking precautions to enter content in the visual editor and then switch to the html editor to update (I enter a LOT of content and the text editor gets old/cluttered for that). But you think the transitioning between them can cause it? Basically I just shouldn’t use the visual editor?

    Anyway, thanks a lot – creating the code for me goes above and beyond. You’re the best!

    Morgan

    Plugin Author Baden

    (@baden03)

    Glad everything worked out!

    Hi Baden, i′m trying to figure it out almost the same thing, but i’m using the roll-your-own type with the trigger below the target.
    Here′s the code

    <div id="target-ID" class="collapseomatic_content">
     <?php the_content(); ?>
    </div>
    
    <span class="collapseomatic scroll-to-trigger" title="continue lendo" id="ID">keep reading</span>
    <span id="swap-ID" style="display: none;">&nbsp;</span>

    the link that i am testing (when the thumbnails and text starts)
    https://site1369326559.provisorio.ws/thinking/

    Thanks in advance!

    “scrollonclose” attribute could be a good resolution but it only works with shortcodes. I didn′t found the hardcode on the documentation.

    hello, anybody knows why the scroll-to-trigger isn’t working at my theme?

    Plugin Author Baden

    (@baden03)

    The proper structure is like so:

    <span class="collapseomatic " id="your_ID" title="read more" >read more</span>
    <div id="target-your_ID" class="collapseomatic_content">Your content goes here
    <span class="collapseomatic colomat-close scroll-to-trigger" id="bot-your_ID">click here to close</span>
    </div>

    tks, but this is not exactly what i want, i read the documentation about that. What i am trying is the same as it works at the link https://site1369326559.provisorio.ws/thinking/, just swapping the span and always at the bottom of post.

    this is how i tried

    <div id="target-mais<?php the_ID(); ?>" class="collapseomatic_content" style="position:relative;">
    <?php the_content(); ?>
    </div>
    
    <a class="collapseomatic" title="read more" id="mais<?php the_ID(); ?>" ><span class="morec dow">read more <div class="dowh"></div></span></a>
    
    <a id="swap-mais<?php the_ID(); ?>" style="display: none;"><span id="bot-<?php the_ID(); ?>" class="collapseomatic colomat-close scroll-to-trigger morec clos"><div class="closh"></div></span></a>

    please ignore the dirt code, i’m just testing the roll-your-own structure.

    Plugin Author Baden

    (@baden03)

    As you can see in the example we provided, the bot- trigger needs to be placed INSIDE of the target content. So to fix your example:

    <div id="target-mais<?php the_ID(); ?>" class="collapseomatic_content" style="position:relative;">
    <?php the_content(); ?>
    <span id="bot-<?php the_ID(); ?>" class="collapseomatic colomat-close scroll-to-trigger morec clos"><div class="closh"></div></span>
    </div>
    
    <span class="collapseomatic morec dow" title="read more" id="mais<?php the_ID(); ?>" >read more <div class="dowh"></div></span>
    <span id="swap-mais<?php the_ID(); ?>" style="display: none;"></span>
Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Findme/scrollonclose in internal collapse trigger?’ is closed to new replies.