<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://geodesicsolutions.org/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://geodesicsolutions.org/wiki/feed.php">
        <title>Geodesic Solutions Community Wiki tutorials:design_adv:examples</title>
        <description></description>
        <link>http://geodesicsolutions.org/wiki/</link>
        <image rdf:resource="http://geodesicsolutions.org/wiki/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-04-29T20:16:51+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/category_specific_content_in_listing_details_page?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/checkbox_to_dropdown_in_search?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/display_different_html_if_logged_in_out?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/forwarding_to_subscription_after_registration?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/region_specific_html?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/registration_form?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/start?rev=1411664133&amp;do=diff"/>
                <rdf:li rdf:resource="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/tiny_mce?rev=1411664133&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://geodesicsolutions.org/wiki/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Geodesic Solutions Community Wiki</title>
        <link>http://geodesicsolutions.org/wiki/</link>
        <url>http://geodesicsolutions.org/wiki/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/category_specific_content_in_listing_details_page?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Category Specific Content in the Listing Display Page</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/category_specific_content_in_listing_details_page?rev=1411664133&amp;do=diff</link>
        <description>Category Specific Content in the Listing Display Page

This tutorial is for advanced users of the software who have html and Smarty code experience. Do not attempt unless you have a firm grasp of each and the ability to debug the changes you make if you run into a problem. Support cannot help with your php, Smarty or html code changes like the ones you would make below.  PHP, Smarty or html tutoring is beyond the scope of support we can supply.</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/checkbox_to_dropdown_in_search?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Change the Checkbox Choices in the Search Form to Dropdowns</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/checkbox_to_dropdown_in_search?rev=1411664133&amp;do=diff</link>
        <description>Change the Checkbox Choices in the Search Form to Dropdowns

This tutorial will point you to where changes would need to be made to system templates to make the dropdown questions you setup in the category specific questions and site wide optional fields display as dropdowns in the advanced search page.  Before you attempt this customization you should know there is a reason that checkboxes appear in the first place.  The checkboxes allow your clients the ability to choose more than one option f…</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/display_different_html_if_logged_in_out?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How Do I Display Something When Logged In and Something Else When Logged Out?</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/display_different_html_if_logged_in_out?rev=1411664133&amp;do=diff</link>
        <description>How Do I Display Something When Logged In and Something Else When Logged Out?

This is pretty easy and there's already an example of it a few places within the default design.  Use the following Smarty code:


	{if not $logged_in}
		{*Logged out code*}
		&lt;!-- any html/smarty code you want to display when logged IN to your Geo software --&gt;
             You are logged in
	{else}
		{*Logged in code*}
		&lt;!-- any html/smarty code you want to display when logged OUT your Geo software --&gt;
             …</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/forwarding_to_subscription_after_registration?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Forward to Subscription Purchase After Registration</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/forwarding_to_subscription_after_registration?rev=1411664133&amp;do=diff</link>
        <description>Forward to Subscription Purchase After Registration

Many clients want to ask for a subscription immediately after registering on the site.  While the software doesn't require the registrant to purchase a subscription to complete registration you can certainly forward them into that process to make it appear so.  Even though you do the forwarding suggested here the new registrant can easily &quot;click out&quot; of the subscription purchase process to other parts of the site.  If the client had not purcha…</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/region_specific_html?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Subdomain or Region Specific HTML</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/region_specific_html?rev=1411664133&amp;do=diff</link>
        <description>Subdomain or Region Specific HTML

&lt;tip c n&gt;Note:  Support does not do any html, php or smarty code tutoring.  The code below is only designed to get you started.  If you need additional tutoring or debugging for html, php or smarty you will need to consult with an external developer or purchase developer time through sales&lt;/tip&gt;</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/registration_form?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Registration Form Field Manipulations</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/registration_form?rev=1411664133&amp;do=diff</link>
        <description>Registration Form Field Manipulations

This tutorial is for advanced users of the software who have html and Smarty code experience.  Do not attempt unless you have a firm grasp of each and the ability to debug the changes you make if you run into a problem.  Support cannot help with your php code or system template changes like the ones you would make below.  One thing to know is if you follow the guidelines in &quot;custom system template changes&quot; wiki article here you will always be able to restor…</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/start?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Examples</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/start?rev=1411664133&amp;do=diff</link>
        <description>Examples

This section contains specific examples for the most asked about design changes.  While the tutorials in the parent Design - Advanced are more general, the tutorials here go over how to make specific changes, such as how to customize a specific template.</description>
    </item>
    <item rdf:about="http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/tiny_mce?rev=1411664133&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-25T16:55:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Customizing the TinyMCE Display (WYSIWYG editor) V5</title>
        <link>http://geodesicsolutions.org/wiki/tutorials/design_adv/examples/tiny_mce?rev=1411664133&amp;do=diff</link>
        <description>Customizing the TinyMCE Display (WYSIWYG editor) V5

&lt;tip c w&gt;Warning: This is an advanced tutorial, involving making changes to a System template file.

This template, like all System templates, is very dynamic and closely related with its PHP file counterpart.  Be prepared to make adjustments to make it compatible when you update the Geo software.  See</description>
    </item>
</rdf:RDF>
