badget

Biggest Sale! Special Offer!

Get 50% discount on all of our single themes with this coupon code: #50%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 3,046 through 3,060 (of 5,207 total)
  • Author
    Posts
  • in reply to: Site hacked? #22983

    Hi lillianduggan,

    We have just fixed it. Once you change all of your Cpanel, Ftp and WordPress Password. There is some malware code inside functions.php and we just removed it from functions.php. Now you all plugins is on active and A link titled “does xanax interact with 5 htp” is no more there.

    Thank you!

    in reply to: Include/ Exclude a category in a separate page #22979

    Hi info66,

    View this below screenshot.
    http://awesomescreenshot.com/01c4ld2u86

    here you can select multiple category but this will effect only in home page. We have designed our theme this way. If you want other than it then it needs code customization and you need to hire a developer to fix it. Before making any changes in the theme first of all you need to create a child theme then only customize the code. So that your updated data will not be loss while upgrading to our new version.

    Thank you!

    in reply to: Changing or removing the green bar #22978

    Hi wordsmith04,
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .page-title-wrap {
      display: none;
    }

    This greenbar will be removed from all pages.

    Thank you!

    in reply to: Site logo as image and not only text #22977

    That’s great c_sardinha

    Thank you!

    in reply to: i cant log in to managing page of word press #22976

    Hi aminhabibi,

    Once you install the fresh ultimate theme and deactivate all the plugins that you have installed in your dashboard. We are not facing this problem so it must work fine too in you site.

    Thank you!

    in reply to: How can I create two blog pages in my website? #22942

    You welcome Elisenda

    Thank you!

    in reply to: Installation of 1.9 in WordPress #22940

    Hi William,

    First activate a different theme and delete the old version of Attitude Pro theme then upload the new version of the theme and activate it. If you have not customized the code then there will be no any changes you will find but if you customize the code then your all customized code will be lost. So, first back up your previous version of Attitude pro and then only activate the new one.

    Thank you!

    in reply to: Page title not appearing within the main Gallery page. #22939

    Hi Adria,

    To use the page title as in our demo you may use breadcrumbs
    https://wordpress.org/plugins/breadcrumb-navxt/

    If you don’t want to use plugins then it needs code customization. We recommended you to create a child theme before making any changes in the code.

    Thank you!

    in reply to: Recommended size/options for image slider #22938

    Hi filipa.martins,

    We have already provided the slider.How to set up slider?
    ==> Just follow this link https://www.themehorse.com/theme-instruction/ultimate/#slider

    If you want to use plugins then it may also needs code customization. You may also contact to the SiteOrigin team too.

    Thank you!

    in reply to: Translating buttons (and other) #22937

    Ok that’s great Michal

    Thank you!

    in reply to: Easiest way to change certain font #22896

    Hi thecedarsrc,

    Yes you can use child theme or you may use custom css from dashboard-> appearance-> theme options-> design options-> custom css to increase the font size too.

    Thank you!

    in reply to: How can I create two blog pages in my website? #22895

    Hi Elisenda,

    This feature is not available in our theme. For this it needs code customization. You need to hire a developer to fix it.

    Thank you!

    in reply to: Different Revolution Slider on each page #22894

    Hi Terry,

    The there is a hook in the header file. do_action( 'attitude_header' ); This code is in header.php, The core file for this header is inside theme folder (attitude)-> library-> structure-> header-extension.php, all the section of header is derived from header-extension.php from line no 239, you can find this below code

    if( 'revolution-slider' == $options[ 'slider_type' ] ) {
       			if( !empty( $options[ 'header_slider' ] ) && function_exists( 'putRevSlider' ) ) {
       				if( '1' == $options[ 'revslider_homepage' ] && ( is_home() || is_front_page() ) ) {
    						putRevSlider( $options[ 'header_slider' ], "homepage" );
    						$attitude_show_breadcrumb = 'false';
    					}
    					$attitude_rev_page_array = explode( ',', $options[ 'pages_id_revslider' ] );
    					if ( !empty( $options[ 'pages_id_revslider' ] ) && is_page( $attitude_rev_page_array ) ) {
    						putRevSlider( $options[ 'header_slider' ], $options[ 'pages_id_revslider' ] );
    						$attitude_show_breadcrumb = 'false';
    					}
       			}
       		}

    From here you can make a code customization for each page.

    How to unhook the functions? Here is a simple example to display page 404.php

    unhook functions
    
    // Unhook default Thematic functions
    function unhook_thematic_functions() {
        // Don't forget the position number if the original function has one
    
    remove_action( 'attitude_404_content', 'attitude_display_404_page_content', 10 );
    
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook attitude_header
    
    add_action( 'attitude_404_content', 'attitude_child_display_404_page_content', 10 );
    /**
     * function to show the footer info, copyright information
     */
     
     
    function attitude_child_display_404_page_content() {      ?>   
    <div id="content">
    		<header class="entry-header">
    			<h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', 'attitude' ); ?></h1>
    		</header>
    		<div class="entry-content clearfix" >
    			<p>Thank you</p> 
    		</div><!-- .entry-content -->
    	</div><!-- #content -->
      <?php 
    }

    Thank you!

    in reply to: Changed Domain Name #22893

    Hi support5,

    I think you have edited in the database so you are getting to all the default settings. For more information visit this link
    http://codex.wordpress.org/Moving_WordPress

    Thank You!

    in reply to: html inside textarea #22892

    Hi sweet,

    Yes we have strip the html code. We recommended you to add the plain text. If you want html code then it needs code customization so you need to hire a developer to fix it.

    Thank you!

Viewing 15 posts - 3,046 through 3,060 (of 5,207 total)