Your Time:
Our Time:
← Back to discussions

Anona theme options not loading

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 4 replies, 3 voices, and was last updated 10 years, 3 months ago by Anonymous.

  • 2016-06-07 at 9:32 pm
    Support Expired
    #14767
    daggarx
    Participant
    • Topics: 2
    • Replies: 2
    • Total posts: 4
    • Post count: 5

    Hi,

    I’m trying to change options in the backend, but I can no longer theme options. I click on Anona and it just endlessly loads. Can you please help?

    2016-06-08 at 10:07 am
    #14775
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    If you can provide us WP Logins to your website with URL then we can take a closer look at it and will fix the issue. Make sure you set the post as private reply so that only admin can see your wp-logins.

    2016-06-08 at 12:34 pm
    #14784
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    Follow the path: framework/admin/admin-interface.php file and replace below code line 714 to 763:

    
    				case 'closehours':
    
    						$interval 			= get_option('iva_timeinterval') ? get_option('iva_timeinterval'):'15';
    						$iva_time_interval  = '+'.$interval.'minutes';
    						$optionid 			= get_option( $value['id'] );
    						$iva_weekdays 	 	= array(
    													'sunday',
    													'monday',
    													'tuesday',
    													'wednesday',
    													'thursday',
    													'friday',
    													'saturday'
    											 );
    
    						foreach( $iva_weekdays as $key => $day ){
    
    							$iva_hrs = get_option( 'iva_'.$day );
    
    							$iva_stored_val = $optionid[$key];
    
    							$open_hrs   =  strtotime( $iva_hrs['opening'] );
    							$close_hrs  =  strtotime( $iva_hrs['closing']);
    							$closed_hrs =  $iva_hrs['close'];
    
    							if( $closed_hrs == 'off' ){
    								$output .= '<h3>'. ucfirst ( $day ) .'</h3>';
    								$output .= '<div class="hours">';
    								$output .= '<select class=" of-input  "  multiple="multiple"  name="'. $value['id'].'_'.$key.'_closed[]" id="'. $value['id'].'_'.$key.'_closed[]">';
    								while( $open_hrs < $close_hrs ){
    
    									$iva_time_hrs = date( 'H:i',$open_hrs );
    									$selected = '';
    									if ( get_option( $value['id'] ) ) {
    										if( @in_array( $iva_time_hrs , $iva_stored_val  ) ) $selected = "selected=\"selected\"";
    									} else {
    
    									}
    
    									$output .= '<option value="'.$iva_time_hrs.'" '.$selected.'>'.$iva_time_hrs.'</option>';
    									$open_hrs = strtotime( $iva_time_interval, $open_hrs );
    								}
    								$output .= '</select></div>';
    							}
    						}
    						break;
    
    • This reply was modified 10 years, 3 months ago by Fem.
    • This reply was modified 10 years, 3 months ago by Fem.
    2016-06-08 at 6:51 pm
    Support Expired
    #14792
    daggarx
    Participant
    • Topics: 2
    • Replies: 2
    • Total posts: 4
    • Post count: 5
    This reply has been marked as private.
    2016-06-09 at 10:42 am
    #14811
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    Fixed your issue.
    Edited File: admin-interface.php

You must be logged in to reply to this topic.