mdivk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ProfitMag] How do I remove the icons added to the slides?I also want to remove the link added to the slides and the 4 images beside slider. don’t know which is the right file to change. 🙁
Thank you very much.
By the way, in the settings I set the Reading is Frontpage is set to display a static page.
Forum: Themes and Templates
In reply to: [ProfitMag] Where to adjust the height of the menu?Thank you guys for the kind help, it works!!!
Forum: Themes and Templates
In reply to: [ProfitMag] Where to adjust the height of the menu?Thank you for the code, however, it doesn’t resolve the issue, if you open the site, and go to Services->Cupping, you will not be able to select sub menu under Cupping, the submenu is not aligned with its parent menu.
Forum: Themes and Templates
In reply to: [ProfitMag] Where to adjust the height of the menu?Thank you very much, here is the website
Your code can partly fix the height issue as you can see.
But, there are still issue in the menu: if you hover on any menu with sub menu, for example, the second menu (Service), you will see there are two second level menus, and they are not accessible.
What’s missing here?
Thanks.
Forum: Themes and Templates
In reply to: [ProfitMag] [Profitmag Theme] Sub Menu line up problemsthis profitmag is so buggy, and the author never gets back to your email. I don’t know why the theme should continue to be listed and searchable in wordpress official site.
The theme is a good design, if the bugs can be fixed.
Forum: Themes and Templates
In reply to: Who can recommend a solution for me? ThanksThanks for your quick reply.
Do you have any recommendation on a theme like the profitmag?
Thank you.
BTW: for unknown reason, I just replied you 1 minute ago and my reply seems disappeared.
Forum: Themes and Templates
In reply to: Who can recommend a solution for me? ThanksThank you for your quick reply.
Do you have any theme recommendation with the similar function like profitmag?
Thanks.
Forum: Themes and Templates
In reply to: theme's new version not working while old is workingCan moderator please remove this post? I found the theme’s forum and posted there.
Sorry for the mistake.
Forum: Themes and Templates
In reply to: theme's new version not working while old is workingI am using theme profitmag
Forum: Themes and Templates
In reply to: Can someone please help me on this theme? Thanks.Here is my revised code:
<header id="masthead" class="site-header" role="banner"> <div class="site-branding"> <?php if( ( of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'both' || of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'logo_only' ) && of_get_option( 'kindergarten_header_logo_image', '' ) != '' ) { ?> <table> <tr> <td class="header-logo-image"> <!-- <div class="header-logo-image"> --> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo esc_url(of_get_option( 'kindergarten_header_logo_image', '' )); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"></a> <!-- </div> #header-logo-image --> </td> <td> <!-- begin of customized contact info on the same line of logo image --> <div class="header-contact"> <?php $adress = of_get_option( 'kindergarten_header_adress', 'Massachusetts Ave, Cambridge, MA, USA' ); $mail = of_get_option( 'kindergarten_header_mail', 'info@example.com' ); $phone = of_get_option( 'kindergarten_header_phone', '+1 617-253-1000' ); if ($mail) echo '<i class="fa fa-envelope-o"></i>'.$mail.'<br />'; if ($phone) echo '<i class="fa fa-phone"></i>'.$phone.'<br />'; if ($adress) echo '<i class="fa fa-map-marker"></i>'.$adress.''; ?> </div> <!-- end of customized contact info on the same line of logo image --> </td> </tr> <?php } if( of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'both' || of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'text_only' ) { ?> <div class="header-text"> <h1 class="site-title"><i class="fa <?php echo esc_attr( of_get_option( 'kindergarten_header_text_icon', 'fa-3x fa-child' ) ); ?>"></i><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> </div> <?php } ?> <div class="header-search"> <?php get_search_form(); ?> <div class="site-description"> <?php $adress = of_get_option( 'kindergarten_header_adress', 'Massachusetts Ave, Cambridge, MA, USA' ); $mail = of_get_option( 'kindergarten_header_mail', 'info@example.com' ); $phone = of_get_option( 'kindergarten_header_phone', '+1 617-253-1000' ); if ($mail) echo '<i class="fa fa-envelope-o"></i>'.$mail.'<br />'; if ($phone) echo '<i class="fa fa-phone"></i>'.$phone.'<br />'; if ($adress) echo '<i class="fa fa-map-marker"></i>'.$adress.''; ?> </div> </div> <div class="clear"></div> </div><!-- .site-branding --> </header><!-- #masthead -->Forum: Themes and Templates
In reply to: Can someone please help me on this theme? Thanks.Here is the original code:
<header id="masthead" class="site-header" role="banner"> <div class="site-branding"> <?php if( ( of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'both' || of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'logo_only' ) && of_get_option( 'kindergarten_header_logo_image', '' ) != '' ) { ?> <div class="header-logo-image"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo esc_url(of_get_option( 'kindergarten_header_logo_image', '' )); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"></a> </div><!-- #header-logo-image --> <?php } if( of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'both' || of_get_option( 'kindergarten_show_header_logo_text', 'text_only' ) == 'text_only' ) { ?> <div class="header-text"> <h1 class="site-title"><i class="fa <?php echo esc_attr( of_get_option( 'kindergarten_header_text_icon', 'fa-3x fa-child' ) ); ?>"></i><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> </div> <?php } ?> <div class="header-search"> <?php get_search_form(); ?> <div class="site-description"> <?php $adress = of_get_option( 'kindergarten_header_adress', 'Massachusetts Ave, Cambridge, MA, USA' ); $mail = of_get_option( 'kindergarten_header_mail', 'info@example.com' ); $phone = of_get_option( 'kindergarten_header_phone', '+1 617-253-1000' ); if ($mail) echo '<i class="fa fa-envelope-o"></i>'.$mail.'<br />'; if ($phone) echo '<i class="fa fa-phone"></i>'.$phone.'<br />'; if ($adress) echo '<i class="fa fa-map-marker"></i>'.$adress.''; ?> </div> </div> <div class="clear"></div> </div><!-- .site-branding --> </header><!-- #masthead --> <code></code>Forum: Themes and Templates
In reply to: Can someone please help me on this theme? Thanks.I forgot to post my site’s url
Forum: Themes and Templates
In reply to: [ProfitMag] Make category Title clickableThank you but the link is not added successfully here in my site
I just started the site for my friend, pretty much empty, I set the first block area to point to a category “HomePage” that already has 4 posts with pictures.
As you can see, the title is correctly displayed as “HomePage” which is the category’s name, but no href tag added to it if you inspect the source.
Forum: Themes and Templates
In reply to: How to change the tagline's font color/size?It would be really appreciated if anyone can help me understand how the page is generated and how each section is generated with what style attached to it.
Thank you in advance.
Forum: Themes and Templates
In reply to: How to change the tagline's font color/size?Here is the code for this section:
<!--Our team--> <?php if ( is_home() ) { ?> <div class="row "> <div class="warp large-12 columns"> <?php if(of_get_option('ourteam_checkbox','hathor') == "1"){ ?> <?php get_template_part('parts/mid','team'); ?> <?php }?> <?php }else{ ?> </div></div> <?php }?></div></div></div> <!--Our Team END-->