Madaling jili slot app.Claim Your Free 999 Pesos Bonus Today https://www.ads-software.com/support/theme/montezuma/feed Mon, 25 Nov 2024 19:10:37 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://www.ads-software.com/support/topic/fixes-for-php-8/ <![CDATA[Fixes for PHP 8+]]> https://www.ads-software.com/support/topic/fixes-for-php-8/ Sun, 05 May 2024 07:03:40 +0000 actualmanx Replies: 4

PHP 8.1 my webhost is on and i was getting a few errors with the help of chat gpt and copilot i am now error free below are the edited files that fixed every error i had with arrays, undefined, nulls and so on

wp-content/themes/montezuma/includes/parse_php.php

<?php

function bfa_parse_php_callback( $matches ) {

	$function_name = $matches[1];
	$parameter_string = $matches[2]; 

	$whitelist = bfa_get_whitelist();
	
	/*
	 * Check for "echo " in 'function_name' part and remove it 
	 * echo function_name( ... )
	 */	
	$echo = FALSE;
	if( strpos( $function_name, 'echo ' ) === 0 ) {
		$echo = TRUE;
		// Remove 'echo ' (first 5 letters) from the beginning of the string 
		$function_name = str_replace( substr( $function_name, 0, 5 ), '', $function_name );
	}
	
	
	// Allow only whitelisted functions:
	if( ! in_array( $function_name, array_keys( $whitelist ) ) ) 
		return;
	

	// $need_loop = array( 'bfa_comments_popup_link', 'comments_popup_link', 'the_content' );
	$need_loop = array( 'the_author',
						'the_author_meta',
						'the_author_posts_link',
						'the_content',
						'the_post_thumbnail',
						'the_date', 
						'the_excerpt' 
						 );
	// functions that needs the loop
// the following line changed by Patch 113-02		
//	if (have_posts()) 
	if( !in_the_loop() && in_array( $function_name, $need_loop ) ) {
	/*
		global $query_string;
		$posts = query_posts($query_string); 
	*/
		if ((is_single() OR is_page()) AND have_posts()) 
			the_post(); 	
	}


	// No paramater -> parameter type doesn't matter 
	if( $parameter_string == '' ) {
		
		ob_start(); 
			if( $echo == TRUE ) 				
				echo $function_name();
			else 
				$function_name();
				
			$result = ob_get_contents(); 
		ob_end_clean();				
	
		return $result;
	}	


	/*
	 * Array style parameters: 
	 * function_name(array('this'=>'that','this'=>3,'this'=>true));
	 */
	elseif( $whitelist[$function_name]['type'] == 'array' ) {
	
		$param_array = array();
	
		$parameter_string = str_replace( "\n", " ", $parameter_string );
		$parameter_string = str_replace( "  ", " ", $parameter_string ); // remove double spaces
		
		$parameter_array = str_getcsv( $parameter_string, ',', '\'', '\\' );
		
		foreach( $parameter_array as $parameter ) {
			list( $key, $value ) = explode( '=>', $parameter );
			$param_array[ trim( $key, '\' ' ) ] = trim( $value, '\' ' );
		}

		ob_start(); 
			if( $echo === TRUE ) 
				echo $function_name( $param_array );
			else 
				$function_name( $param_array );
			$result = ob_get_contents(); 
		ob_end_clean();	

		return $result;
	}

	
	/*
	 * URL-query style parameters: 
	 * function_name( 'this=that&this=that&this=that' );
	 */
	elseif( $whitelist[$function_name]['type'] == 'queryarray' ) {
		
		ob_start(); 
			if( $echo === TRUE ) 
				echo $function_name( $parameter_string );
			else 
				$function_name( $parameter_string );
			$result = ob_get_contents(); 
		ob_end_clean();				
	
		return $result;
	}

	
	/* 
	 * PHP function-style parameters: 
	 * function_name( 'param', 'param', '', TRUE, 1, 'param' );
	 */
	elseif( $whitelist[$function_name]['type'] == 'function' ) {

		$parameter_array = str_getcsv( $parameter_string, ',', '\'', '\\' );
			
		$args = array();
		foreach( $parameter_array as $arg ) {
			$thisarg = $arg;
			$args[] = trim( $thisarg, '\'' );
		}
		
		ob_start(); 
			if( $echo === TRUE ) {
				echo call_user_func_array( $function_name, $args );
			} else { 
				call_user_func_array( $function_name, $args );
			}	
			$result = ob_get_contents(); 
		ob_end_clean();	
			
		return $result;
	}		

	
	/*
	 * Single PHP style parameter, or none at all:
	 * function_name();
	 * function_name('param');
	 */
	elseif( $whitelist[$function_name]['type'] == 'single' || $whitelist[$function_name]['type'] == 'function') {	
		ob_start(); 
			if( $echo === TRUE ) 
				echo call_user_func( $function_name, trim( $parameter_string, '\'' ) );
			else 
				call_user_func( $function_name, trim( $parameter_string, '\'' ) );
			$result = ob_get_contents(); 
		ob_end_clean();	
	
	return $result;
	}
	
}
	
	
function bfa_parse_php_string( $matches ) {

	$php_string = $matches[1];
	
	$php_string = str_replace( array( "\r", "\n", "\t" ), "", $php_string );
	// Since 1.2.0:
	$php_string = str_replace( ", ", ",", $php_string );
	
	// Replace translation texts that are paramaters first
	// __('afsfsfs "nnhjj" peter\'s ', 'montezuma')
	// __("afsfsfs \"nnhjj\" peter's ", 'montezuma')
$php_string = preg_replace_callback(
    '/__\(\s*\'|"[\'|"]\s*,\s*\'montezuma\'\s*\)/',
    function ($matches) {
        return translate(stripslashes($matches[1] ?? ''), "montezuma");
        // Use null coalescing operator to provide a default value ('') if $matches[1] is undefined
    },
    $php_string
);

	
	// $matches[1] is the (.*) from above. We have a php code string without the 
	// opening and closing PHP tags, and no spaces left/right
	// match 'echo function_name( parameters )' or 'function_name( parameters )'
	//	\s* = 0 or more spaces
	//  (echo [a-z_]+[a-z\d_]+|[a-z_]+[a-z\d_]*) = min 1 character, 'echo func_name' or 'func_name'
	//            'func_name' can start with a-z or _, second character optional, can be a-z, _ or \d = number
	//  \s* = 0 or more spaces
	//  \( = opening bracket ( - literally
	//  \s* = 0 or more spaces
	//  (?:array\s*\()? = ?: = don't capture. ()? = optional
	//              content: an optional 'array' followed by 0 or more spaces and an opening bracket (
	
	
	$result = preg_replace_callback(
		'/\s*(echo [a-zA-Z_]+[a-zA-Z\d_]+|[a-zA-Z_]+[a-zA-Z\d_]*)\s*\(\s*(?:array\s*\()?\s*(.*?)\s*(?:\))?\s*\)\s*/',		
		'bfa_parse_php_callback',
		$php_string
	);
	
	return $result;
}
		
		
		
function bfa_parse_php( $text ) {
	$whitelist = bfa_get_whitelist();
	
	$text = preg_replace_callback(
		'/\<\?php \s*(.*?)\s*(?:;)?\s*\?\>/s', // s = multiline \s* = 0 or more spaces
		'bfa_parse_php_string', 
		$text
	);
	return $text;
}



// parse potentially eval'able code for illegal function calls
function bd_parse($str) {
	
	// allowed functions:
	$allowedCalls = explode(
		',',
		'explode,implode,date,time,round,trunc,rand,ceil,floor,srand,'.
		'strtolower,strtoupper,substr,stristr,strpos,print,print_r'
	);
	
	// check if there are any illegal calls
	$parseErrors = array();
	$tokens = token_get_all($str); 
	$vcall = '';
	
	foreach($tokens as $token) {
		if(is_array($token)) {
			$id = $token[0];
			switch ($id) {
				case(T_VARIABLE): { $vcall .= 'v'; break; }
				case(T_CONSTANT_ENCAPSED_STRING): { $vcall .= 'e'; break; }
				
				case(T_STRING): { $vcall .= 's'; }
				
				case(T_REQUIRE_ONCE): case(T_REQUIRE): case(T_NEW): case(T_RETURN):
				case(T_BREAK): case(T_CATCH): case(T_CLONE): case(T_EXIT):
				case(T_PRINT): case(T_GLOBAL): case(T_ECHO): case(T_INCLUDE_ONCE):
				case(T_INCLUDE): case(T_EVAL): case(T_FUNCTION): case(T_GOTO):
				case(T_USE): case(T_DIR): {
					if (array_search($token[1], $allowedCalls) === false)
						$parseErrors[] = 'illegal call: '.$token[1];
				}
			}
		}
		else $vcall .= $token;
	}
	
	// check for dynamic functions
	if(stristr($vcall, 'v(')!='') $parseErrors[] = array('illegal dynamic function call');
	
	return $parseErrors;
}

/*
Check for safe code by running: if(count(bd_parse($user_code))==0)
*/

wp-content/themes/montezuma/includes/thumb.php

<?php 
if ( ! function_exists( 'bfa_delete_thumb_transient' ) ) :
function bfa_delete_thumb_transient( $post_id ) {
	delete_transient( 'bfa_thumb_transient' );
}
endif;
add_action( 'save_post', 'bfa_delete_thumb_transient' );



if ( ! function_exists( 'bfa_thumb' ) ) :
    function bfa_thumb( $width, $height, $crop = false, $before = '', $after = '', $link = 'permalink' ) {
        global $post, $upload_dir, $bfa_thumb_transient;

        if ( ! is_writable( $upload_dir['basedir'] ) ) {
            echo "WP Upload Directory not writable! Check file and directory permissions";
            return;
        }


	// Unique thumb per size & post
	$id = get_the_id() . '_' . $width . '_' . $height . '_' . ( $crop === FALSE ? '0' : '1' ); 

	if( array_key_exists( $id, $bfa_thumb_transient ) AND !str_contains( (string) $bfa_thumb_transient[$id], 'src=""' ) ) 
		$this_thumb = $bfa_thumb_transient[$id] ?? false;
	else 
		$this_thumb = FALSE;
		
	if ( $this_thumb === FALSE ) {
		$this_thumb = ''; 
		$hasthumb = FALSE; 
		$hassrc = FALSE; 
		$has_thumbnail = FALSE;
		
		if( '' != ( $thumb = get_post_thumbnail_id() ) ) 
			$hasthumb = TRUE; 
		elseif ( FALSE !== ( $thumb = bfa_get_first_attachment_id() ) ) 
			$hasthumb = TRUE; 
		elseif ( FALSE !== ( $thumb = bfa_get_first_unattached_gallery_img_id() ) ) 
			$hasthumb = TRUE; 
		// if local image not added with WP uploader but added as manual HTML link
		elseif( FALSE !== ( $thumb = bfa_get_first_img_src() ) ) 
			$hassrc = TRUE; 
		
		if( $hasthumb === TRUE ) { 
			$thumbimage = bfa_vt_resize( $thumb,'' , $width, $height, $crop ); 
			$has_thumbnail = TRUE; 
		} elseif( $hassrc === TRUE ) { 
			$thumbimage = bfa_vt_resize( '', $thumb , $width, $height, $crop ); 
			$has_thumbnail = TRUE; 
		}	
		
		if( $has_thumbnail === TRUE ) { 
			$this_thumb .= '<img src="' . $thumbimage['url'] . '" width="' . $thumbimage['width'] . '" height="' . $thumbimage['height'] . '" alt="' . $post->post_title . '"/>';
		} 
		#$bfa_thumb_transient = get_transient( 'bfa_thumb_transient' );
		$bfa_thumb_transient[$id] = $this_thumb;
		set_transient( 'bfa_thumb_transient', $bfa_thumb_transient, 60*60*1 );
	} 
	if( trim( (string) $this_thumb ) != '' AND $this_thumb != FALSE ) {
		if( $link == 'permalink' ) 
			$this_thumb = '<a href="'.get_permalink( $id ).'">'.$this_thumb.'</a>';	
		echo $before . $this_thumb . $after;
	}
}	
endif;


if ( ! function_exists( 'bfa_get_first_attachment_id' ) ) :
function bfa_get_first_attachment_id() {
	global $post; 
	$args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID ); 
	$attachments = get_posts($args);
	if( $attachments ) 
		return $attachments[0]->ID;
	return FALSE;
}
endif;


// For galleries with images not attached to current post: [gallery ids="xxx,xxx,xxx,xxx,xxx,xxx,xxx"]
if ( ! function_exists( 'bfa_get_first_unattached_gallery_img_id' ) ) :
function bfa_get_first_unattached_gallery_img_id( $args = array() ) {
	global $post; 
	preg_match_all( '|\[gallery \s*ids\s*=\s*"\s*(.*?)\s*,|i', (string) $post->post_content, $matches );
	foreach( $matches[1] as $match ) {
		if ( isset( $match ) ) 
			return $match;
	}
	return false;
}
endif;


if ( ! function_exists( 'bfa_get_first_img_src' ) ) :
    function bfa_get_first_img_src( $args = array() ) {
        global $post, $site_url;
        preg_match_all( '|<img.*?src=\'"[\'"].*?>|i', (string) $post->post_content, $matches );
        foreach ( $matches[1] as $match ) {
            if ( isset( $match ) && str_contains( (string) $match, (string) $site_url ) ) {
                return $match;
            }
        }
        return false;
    }
endif;


if ( ! function_exists( 'bfa_vt_resize' ) ) :
    function bfa_vt_resize( $attach_id = null, $img_url = null, $width, $height, $crop = false ) {
        if ( $attach_id ) {
            $image_src = wp_get_attachment_image_src( $attach_id, 'full' );
            $file_path = get_attached_file( $attach_id );
        } elseif ( $img_url ) {
            $file_path = parse_url( (string) $img_url );
            $file_path = str_replace( '//', '/', $_SERVER['DOCUMENT_ROOT'] . $file_path['path'] );
            $orig_size = getimagesize( $file_path );
            $image_src[0] = $img_url;
            $image_src[1] = $orig_size[0];
            $image_src[2] = $orig_size[1];
        }
        global $file_path, $image_src;

$file_info = pathinfo((string) $file_path);
$extension = isset($file_info['extension']) ? '.' . $file_info['extension'] : '';
$no_ext_path = isset($file_info['dirname'], $file_info['filename']) ? $file_info['dirname'] . '/' . $file_info['filename'] : '';

	$cropped_img_path = $no_ext_path . '-' . $width . 'x' . $height . '-' . ( $crop === false ? '0' : '1' ) . $extension;
if (isset($image_src[1], $image_src[2]) && ($image_src[1] > $width || $image_src[2] > $height)) {
    if (file_exists($cropped_img_path)) {
        $cropped_img_url = str_replace(basename((string) $image_src[0]), basename($cropped_img_path), (string) $image_src[0]);
        $vt_image = [
            'url' => $cropped_img_url,
            'width' => $width,
            'height' => $height,
            //'final_image' =>  $final_image, 
            'image_url' => $img_url
        ];
        return $vt_image;
    }
	
		
		// $crop = false
		if ( $crop === false ) {
			$proportional_size = wp_constrain_dimensions( $image_src[1], $image_src[2], $width, $height ); 
				
			$resized_img_path = $no_ext_path . '-' . $proportional_size[0] . 'x' . $proportional_size[1] . '-' . ( $crop === FALSE ? '0' : '1' ) . $extension;	
			
			if ( file_exists( $resized_img_path ) ) { // checking if the file already exists
				$resized_img_url = str_replace( basename( (string) $image_src[0] ), basename( $resized_img_path ), (string) $image_src[0] );
				$vt_image = array ( 
					'url' => $resized_img_url, 
					'width' => $proportional_size[0], 
					'height' => $proportional_size[1], 
					#'final_image' =>  $final_image, 
					'image_url' => $img_url
				);
				return $vt_image;
			}
		}
		
		// no cache files - let's finally resize it
		$image = wp_get_image_editor( $file_path ); // wp_get_image_editor since WP 3.5
		if ( ! is_wp_error( $image ) ) {
			 $image->resize( $width, $height, $crop );
			 $image->set_quality( 30 );
			 $final_image = $image->save( $cropped_img_path );
		
			$img_url = str_replace( basename( (string) $image_src[0] ), basename( (string) $final_image['path'] ), (string) $image_src[0] );
			/* Sample output: final_image=
			Array ( 
				[path] => C:\UniServer_5.3.10\www\wordpress351/wp-content/uploads/2012/11/AmazingFlash_size1.png 
				[file] => AmazingFlash_size1.png 
				[width] => 440 
				[height] => 260 
				[mime-type] => image/png ) 
			*/

			// resized output
			$vt_image = array ( 
				'url' => $img_url, 
				'width' => $final_image['width'], 
				'height' => $final_image['height'], 
				'final_image' =>  $final_image, 
				'image_url' => $img_url
			);
			return $vt_image;
		}
	}
// default output - without resizing
$vt_image = array(
    'url' => $image_src[0] ?? '', // Use null coalescing operator to handle undefined key
    'width' => $image_src[1] ?? 0, // Provide a default value (e.g., 0) for width
    'height' => $image_src[2] ?? 0, // Provide a default value (e.g., 0) for height
    'image_url' => $img_url ?? '', // Use null coalescing operator for image URL
);
return $vt_image;
}
endif;

wp-content/themes/montezuma/includes/menus.php

<?php 

function bfa_cat_menu($args){

	$menu = '';
	$args['echo'] = false;
	$args['title_li'] = '';

	if( $args['container'] ) {
		$menu = '<'. $args['container'];			
		if( $args['container_id'] ) {
			$menu .= ' id="' . $args['container_id'] . '"';
		}
		if( $args['container_class'] ) {
			$menu .= ' class="' . $args['container_class'] . '"';
		}	
		$menu .= ">\n";
	}

	$menu .= '<ul id="' . $args['menu_id'] . '" class="' . $args['menu_class'] . '">';
	$menu .= str_replace( "<ul class='children'>", '<ul class="sub-menu">', wp_list_categories( $args ) );
	$menu .= '</ul>';

	if( $args['container'] ) {
		$menu .= '</' . $args['container'] . ">\n";
	}
	echo $menu;
}



function bfa_page_menu($args){

	$menu = '';
	$args['echo'] = false;
	$args['title_li'] = '';

	// If the front page is a page, add it to the exclude list
	if( get_option( 'show_on_front' ) == 'page' ) {
		$args['exclude'] = get_option( 'page_on_front' );
	}
	
	if( $args['container'] ) {
		$menu = '<'. $args['container'];		
		if( $args['container_id'] ) {
			$menu .= ' id="' . $args['container_id'] . '"';
		}
		if( $args['container_class'] ) {
			$menu .= ' class="' . $args['container_class'] . '"';
		}
		$menu .= ">\n";
	}

	$menu .= '<ul id="' . $args['menu_id'] . '" class="' . $args['menu_class'] . '">';
	$menu .= str_replace( "<ul class='children'>", '<ul class="sub-menu">', wp_list_pages( $args ) );
	$menu .= '</ul>';

	if( $args['container'] ) {
		$menu .= '</' . $args['container'] . ">\n";
	}
	echo $menu;
}



function bfa_simplify_wp_list_categories($output) {
	$output = preg_replace_callback(
    '/class="cat-item cat-item-(\d+)( current-cat)?(-parent)?"/',
    function ($matches) {
        if (isset($matches[2]) && isset($matches[3])) {
            $extra = " parent";
        } elseif (isset($matches[2])) {
            $extra = " active";
        } else {
            $extra = "";
        }
        $cat = get_category($matches[1]);
        return "class=\"cat-" . $cat->slug . $extra . "\"";
    },
    $output
);

	return $output;
}
add_filter('wp_list_categories', 'bfa_simplify_wp_list_categories');
add_filter('the_category', 'bfa_simplify_wp_list_categories');



function bfa_simplify_wp_nav_menu( $classes, $item ) {
	
	$item_type = 'item';
	$new_classes = array();

	foreach( $classes as $class ) {
		if( $class == 'menu-item-object-category' ) {
			$item_type = 'cat';
		} elseif( $class == 'menu-item-object-page' ) {
			$item_type = 'page';
			
		} elseif( $class == 'current-menu-item' ) {
			$new_classes[] = 'active';
		} elseif( $class == 'current-menu-parent' ) { 
			$new_classes[] = 'parent';
		} elseif( $class == 'current-menu-ancestor' ) { 
			$new_classes[] = 'ancestor';
		}
	}
	
	// static homepage returns '' with basename( get_permalink( $item->object_id ) ) from below
	if( trailingslashit( get_permalink( $item->object_id ) ) == trailingslashit( home_url() ) 
			&& get_option( 'show_on_front' ) == 'page' ) { 
			
		$homepage_id = get_option( 'page_on_front' );
		$thispage = get_post( $homepage_id ); 
		$slug = $thispage->post_name;
		$new_classes[] = $item_type . '-' . $slug;
	} else {
		if( $item_type == 'cat' ) {
			$slug = esc_attr( basename( get_category_link( $item->object_id ) ) );
		} else { 
			$slug = esc_attr( basename( get_permalink( $item->object_id ) ) );
		}
		$new_classes[] = $item_type . '-' . $slug;
	}
	return $new_classes;
}
add_filter( 'nav_menu_css_class', 'bfa_simplify_wp_nav_menu', 100, 2 );



function bfa_strip_wp_nav_menu_ids( $menu ) {
    $menu = preg_replace( '/\<li id="(.*?)"/','<li', $menu );
    return $menu;
}
add_filter ( 'wp_nav_menu', 'bfa_strip_wp_nav_menu_ids' );



function bfa_simplify_wp_list_pages( $classes, $page ) {

	$new_classes = array( 'page-' . $page->post_name );
	foreach( $classes as $class ) {
		if( $class == 'current_page_item' ) {
			$new_classes[] = 'active';
		} elseif( $class == 'current_page_parent' ) { 
			$new_classes[] = 'parent';
		} elseif( $class == 'current_page_ancestor' ) { 
			$new_classes[] = 'ancestor';
		}
	}
	return $new_classes;
}
add_filter( 'page_css_class', 'bfa_simplify_wp_list_pages', 100, 2 );



wp-content/themes/montezuma/functions.php

<?php 

// include all functions
foreach ( glob( get_template_directory() . "/includes/*.php") as $filename) {
    include( $filename );
}


$upload_dir = wp_upload_dir();

// 2 db queries
if( FALSE === ( $bfa_thumb_transient = get_transient( 'bfa_thumb_transient' ) ) ) {
	$bfa_thumb_transient = array();
}


// wp-content/uploads is writable and admin page was called at least once = created static css file exists:
if( is_file( $upload_dir['basedir'] . '/montezuma/style.css' ) ) {
	$bfa_css = '<link rel="stylesheet" type="text/css" media="all" href="' . $upload_dir['baseurl'] . '/montezuma/style.css" />';
// Fallback: wp-content/uploads not writable or CSS file in wp-uploads not created yet (The Montezuma admin must be visited at least once for this). 
} else {
	$bfa_css = '
/*************************************************************************
Default CSS served INLINE because wp-content/uploads is not writable.
This will change once wp-content/uploads is writable
**************************************************************************/
';
	$bfa_css .= implode( '', file( get_template_directory() . "/admin/default-templates/css/grids/resp12-px-m0px.css" ) );
	foreach ( glob( get_template_directory() . "/admin/default-templates/css/*.css") as $filename) {
		$bfa_css .= implode( '', file( $filename ) );
	}
	$bfa_css = str_replace( '%tpldir%', get_template_directory_uri(), $bfa_css );
	$bfa_css = "\n<style type='text/css'>\n" . $bfa_css . "</style>\n";
}


// Enqueuing script with IE *version* condition currently not possible https://core.trac.www.ads-software.com/ticket/16024
add_action( 'wp_head', 'bfa_add_inline_scripts_head' );
function bfa_add_inline_scripts_head() {
	global $is_IE; if( $is_IE ): ?>
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/javascript/html5.js" type="text/javascript"></script>
<script src="<?php echo get_template_directory_uri(); ?>/javascript/css3-mediaqueries.js" type="text/javascript"></script>
<![endif]-->
<?php endif; 
}



// JavaScript for front end
add_action('wp_enqueue_scripts', 'bfa_enqueue_scripts'); 
function bfa_enqueue_scripts() {

	global $montezuma, $upload_dir, $post;

	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
	
	// Check if this is a gallery page
	$is_gallery = 0;
	if( is_object( $post ) && strpos( $post->post_content,'[gallery' ) !== false ) { // check if $post is set on error page
		$is_gallery = 1;
	}
	
	$enqu_list = array( 'jquery' );

	// Load jquery-ui-core through dependencies, direct wp_enqueue_script('jquery-ui-core') may be broken
	// https://www.ads-software.com/support/topic/wp_enqueue_script-with-jquery-ui-and-tabs ui-core, ui-.widget and effects-core needed by smooth-menu
	$enqu_list[] = 'jquery-ui-core';
	$enqu_list[] = 'jquery-ui-widget';
	$enqu_list[] = 'jquery-effects-core';
			
	if ( is_singular() && $montezuma['comment_quicktags'] != '' ) {
		$enqu_list[] = 'quicktags';
	}
	if( $is_gallery === 1 ) {
		wp_register_script( 'colorbox', get_template_directory_uri() . '/javascript/jquery.colorbox-min.js', array( 'jquery' ) ); 
		$enqu_list[] = 'colorbox';
	}
	
	wp_register_script( 'smooth-menu', get_template_directory_uri() . '/javascript/smooth-menu.js', array( 'jquery' ) ); 
	$enqu_list[] = 'smooth-menu';

	// Premade javascript file if uploads not writable, i.e. first use or WP.org theme viewer:
	if( is_file( $upload_dir['basedir'] . '/montezuma/javascript.js' ) ) {
		$bfa_base_js_enqueue_url = $upload_dir['baseurl'] . '/montezuma/javascript.js';
	} else {
		$bfa_base_js_enqueue_url = get_template_directory_uri() . '/admin/default-templates/javascript/javascript.js';
	}
	
	wp_enqueue_script( 'montezuma-js', $bfa_base_js_enqueue_url, $enqu_list );
}    



// https://wordpress.stackexchange.com/questions/24851/wp-enqueue-inline-script-due-to-dependancies
if( ! function_exists( 'bfa_print_footer_scripts' ) ):
	function bfa_print_footer_scripts() {
		global $montezuma;
		if ( $montezuma['comment_quicktags'] != '' && wp_script_is( 'jquery', 'done' ) && is_singular() ) {
		?>
<script type="text/javascript">quicktags({ id: 'comment-form', buttons: '<?php echo $montezuma['comment_quicktags']; ?>' });</script>
		<?php
		}
	}
endif;
add_action( 'wp_footer', 'bfa_print_footer_scripts' );



function bfa_wp_title( $title, $sep ) {
	global $paged, $page;
	
	if( is_feed() ) {
		return $title;
	}

	$title .= get_bloginfo( 'name' );

	$site_description = get_bloginfo( 'description', 'display' );
	if ( $site_description && ( is_home() || is_front_page() ) ) {
		$title = "$title $sep $site_description";
	}
	
	if ( $paged >= 2 || $page >= 2 ) {
		$title = "$title $sep " . sprintf( __( 'Page %s', 'montezuma' ), max( $paged, $page ) );
	}
	
	return $title;
}
add_filter( 'wp_title', 'bfa_wp_title', 10, 2 );



// THEME OPTIONS: new ThemeOptions( $title, $id, $path ) - $path = path to directory of section files containing arrays of option fields
if( is_admin() )  {
 	new ThemeOptions( 'Montezuma Options', 'montezuma', get_template_directory() . '/admin/options' );
} 
$montezuma = get_option( 'montezuma' );


if( $montezuma['wlwmanifest_link'] != 1 ) {
	remove_action('wp_head', 'wlwmanifest_link');
}
if( $montezuma['rsd_link'] != 1 ) { 
	remove_action('wp_head', 'rsd_link');
}
if( $montezuma['wp_generator'] != 1 ) {
	remove_action('wp_head', 'wp_generator');
}
if( $montezuma['feed_links_extra'] != 1 ) {
	remove_action( 'wp_head', 'feed_links_extra', 3 );
}
if( $montezuma['feed_links'] != 1 ) { 
	remove_action( 'wp_head', 'feed_links', 2 ); 
}
if( $montezuma['adjacent_posts_rel_link_wp_head'] != 1 ) {
	remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
}

		
// Theme setup
if( ! function_exists( 'montezuma_setup' ) ):
function montezuma_setup() {

	if( ! isset( $content_width ) ) {
		$content_width = 640;
	}
	
	load_theme_textdomain( 'montezuma', get_template_directory() . '/languages' );

	add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
	add_theme_support( "post-thumbnails" );
	// set_post_thumbnail_size( 320, 180, true );
	add_theme_support("automatic-feed-links");
	register_nav_menus( array( "menu1" => __( "Menu 1", "montezuma" ), "menu2" => __( "Menu 2", "montezuma" ) ) );
}
endif;
add_action( 'after_setup_theme', 'montezuma_setup' );



// Link post thumbs to post, not to full size image
function bfa_link_post_thumbnails_to_post( $html, $post_id, $post_image_id ) {

	$html = str_replace('width="320" height="180" ', '', $html);
	return $html;
}
add_filter( 'post_thumbnail_html', 'bfa_link_post_thumbnails_to_post', 10, 3 );



if( ! function_exists( 'bfa_comments_allowedtags' ) ) :
function bfa_comments_allowedtags( $data ) {

	global $allowedtags, $montezuma; 

	$availabletags = array(
		'a' => array( 'href' => true, 'title' => true ),
		'abbr' => array( 'title' => true ),
		'acronym' => array( 'title' => true ),
		'b' => array(),
		'blockquote' => array( 'cite' => true ),
		'br' => array(),
		'cite' => array(),
		'code' => array(),
		'del' => array( 'datetime' => true ),
		'dd' => array(),
		'dl' => array(),
		'dt' => array(),
		'em' => array (), 'i' => array (),
		'ins' => array('datetime' => array(), 'cite' => array()),
		'li' => array(),
		'ol' => array(),
		'p' => array(),
		'q' => array( 'cite' => true ),
		'strike' => array(),
		'strong' => array(),
		'sub' => array(),
		'sup' => array(),
		'u' => array(),
		'ul' => array(),
	);
	$allowednow = array();
	
	foreach( $montezuma['comment_allowed_tags'] as $tag ) {
		$allowednow[$tag] = $availabletags[$tag];
	}
	
	$allowedtags = $allowednow;
	return $data;
}
endif;
add_filter( 'preprocess_comment', 'bfa_comments_allowedtags' );



// filter tagcloud 
if( ! function_exists( 'bfa_filter_tag_cloud' ) ) :
function bfa_filter_tag_cloud($tags) {
    $tags = preg_replace_callback(
        '|(class=\'tag-link-[0-9]+)(\'.*?)(style=\'font-size: )(.*?)(pt;\')|',
        function ($match) {
            $low = 1;
            $high = 5;
            $sz = round(($match[4] - 8.0) / (22 - 8) * ($high - $low) + $low);
            return "{$match[1]} tagsize-{$sz}{$match[2]}";
        },
        $tags
    );
    return $tags;
}
endif;
add_action('wp_tag_cloud', 'bfa_filter_tag_cloud');



// Change default Excerpt Length to custom length:
function bfa_excerpt_length( $length ) { 
	return 55;
}
add_filter( 'excerpt_length', 'bfa_excerpt_length' );



// Build custom Read More link, used for both auto and manual excerpts
function bfa_read_more_link() {
	return str_replace( 
		array( '%title%', '%url%' ), 
		array( the_title( '', '', FALSE ), esc_url( get_permalink() ) ), 
		' ...<a class="post-readmore" href="%url%">' . __( 'read more', 'montezuma' ) . '</a>' 
	);
}



// Replace default Read More link with custom one:
function bfa_excerpt_more( $more ) {
	return bfa_read_more_link();
}
add_filter( 'excerpt_more', 'bfa_excerpt_more' );



// Add custom Read More link to manual excerpts:
function bfa_custom_excerpt_more( $output ) {
	if( has_excerpt() && ! is_attachment() ) {
		$output .= bfa_read_more_link();
	}
	return $output;
}
add_filter( 'get_the_excerpt', 'bfa_custom_excerpt_more' );



function bfa_include_file( $file_group, $file_name ) {

	global $montezumafilecheck, $upload_dir;
	
	$time_start = microtime(true); // Start timer
	$file = trailingslashit( $upload_dir['basedir'] ) . "montezuma/$file_name.php";

	if( ! file_exists( $file ) ) { // Edited file doesn't exist
		include trailingslashit( get_template_directory() ) . "$file_group/$file_name.php";
	} else {
		extract( $montezumafilecheck['files'][$file_group][$file_name] ); // Get file info: $time, $size, $md5:
		
		// Edited file exists. These checks should take around 5 ms on an average web server:
		$filetime = filemtime( $file );
		$filesize = filesize( $file );
		$filemd5 = md5_file( $file );

		// Include file only if live info matches with saved info:
		if( $time == $filetime && $size == $filesize && $filemd5 == $md5 ) {
			include trailingslashit( $upload_dir['basedir'] ) . "montezuma/$file_name.php";
		}

		$time_end = microtime(true); // Stop timer
		$time = $time_end - $time_start;
		echo "<!-- Rendered in $time seconds -->\n";
	}
}

add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
  
// adding 'css' and 'js' to supports Montezuma in a multisite environment
$existing_mimes['css'] = 'css file'; 
$existing_mimes['js'] = 'jscript file'; 
 
// and return the new full result
return $existing_mimes;
}

add_filter('upload_mimes', 'allow_custom_mimes');

function allow_custom_mimes ( $existing_mimes=array() ) {
// ' with mime type 'application/vnd.android.package-archive'
$existing_mimes['apk'] = 'application/vnd.android.package-archive';
return $existing_mimes;
}
]]>
https://www.ads-software.com/support/topic/e_error-with-php-8-1-upgrade-from-7-4/ <![CDATA[E_ERROR with PHP 8.1 upgrade from 7.4]]> https://www.ads-software.com/support/topic/e_error-with-php-8-1-upgrade-from-7-4/ Wed, 12 Oct 2022 19:25:40 +0000 s1monlock Replies: 2

Oh, I am aware Montezuma is no longer a supported Theme but my WordPress provider automatically upgraded the Server’s PHP from 7.4 to 8.1 which has caused the E_ERROR as follows :

Error Details
=============
An error of type E_ERROR was caused in line 173 of the file /home/s1monloc/public_html/wp-content/themes/montezuma/includes/parse_php.php. Error message: Uncaught Error: Call to undefined function create_function() in /home/s1monloc/public_html/wp-content/themes/montezuma/includes/parse_php.php:173

Stack trace:
#0 [internal function]: bfa_parse_php_string(Array)
#1 /home/s1monloc/public_html/wp-content/themes/montezuma/includes/parse_php.php(211): preg_replace_callback(‘/\\`

As a temporary fix the site is running 7.4 again successfully but can I ask please if anyone else experiencing the same with their Montezuma installation eh ?

TIA !

]]>
https://www.ads-software.com/support/topic/duplicate-woocommerce-tabs-wc-tabs-wrapper/ <![CDATA[Duplicate woocommerce-tabs wc-tabs-wrapper]]> https://www.ads-software.com/support/topic/duplicate-woocommerce-tabs-wc-tabs-wrapper/ Mon, 24 Jun 2019 21:45:02 +0000 MBayDesign Replies: 3

OK, this is a little complicated to explain, but I’ve noted as much as I can while still trying to be brief. This is occurring on all single product pages. WP is up to date, as is woocommerce. I am using the Montezuma theme which uses, regrettably, virtual templates, but the theme designer created a workaround for woocommerce compatibility and up until just a short time ago, this issue was not happening. Additionally, I have another site on the same server using Montezuma and WC without this issue. Full disclosure: Yes, when I switched to the default theme, the issue went away. Here’s the issue:

woocommerce-tabs wc-tabs-wrapper is duplicated. The second instance of it is wrapped in the first instance. The first instance has incorrect information.

The first description tab is repeating the product SHORT description (entry-summary) which is already showing at the top of the page next to the product. It excludes the product title, but includes everything else including the buy button.

Additionally, with this first description tab open, just below it are the nested tabs which are closed but include the correct information. Clicking on them opens the correct info, but does not change the page.

Just below these closed tabs, related products are also showing twice – oddly different related products.

When clicking the first INCORRECT Additional information tab, ALL the incorrect information disappears from the page – the duplicate related products disappears and the duplicate entry-summary and image. You’re left with the main image and description at the top, one instance of related products at the bottom. However, it also eliminates the CORRECT second instance of tabs which, again, are nested within the div of the first woocommerce-tabs wc-tabs-wrapper.

The Montezuma theme appears to be abandoned, so it’s unclear if support is forthcoming. I have contacted the theme developer, but hoping this sounds like something that can be recognized and fixed without him.

Thank you!

]]>
https://www.ads-software.com/support/topic/blank-learnpress-page-on-montezuma-theme/ <![CDATA[Blank LearnPress page on Montezuma theme]]> https://www.ads-software.com/support/topic/blank-learnpress-page-on-montezuma-theme/ Mon, 13 May 2019 08:16:40 +0000 Joseph Replies: 1

I am using LearnPress and Montezuma theme. For some reason, only on the course page I have a blank page, nothing shows up. If I change the theme the course page shows up. How can I fix this?
Thanks!

]]>
https://www.ads-software.com/support/topic/new-breadcrumbs-question/ <![CDATA[new breadcrumbs question]]> https://www.ads-software.com/support/topic/new-breadcrumbs-question/ Fri, 08 Jun 2018 22:24:49 +0000 ConsiderThis1 Replies: 0

I’ve switched themes so it may be unfair to continue asking you questions just because your answers are so clear…

I changed some of my URLs so that they would have the “focus keyword” from the page, per Yoast SEO.

Yoast makes redirects.

But, I keep getting 404 errors on my Google Search Console.

Today I noticed that the Page Attributes I filled in, which apparently create the breakcrumbs, override the menu. So, does the menu have nothing to do with breadcrumbs… in and of itself?

Except if that were totally true, I don’t think I’d be getting the 404 errors…

For the Breadcrumbs on your pages, do you fill in the Page Attributes?

]]>
https://www.ads-software.com/support/topic/linking-amp-and-cannonical-pages/ <![CDATA[Linking AMP and Cannonical pages … ?]]> https://www.ads-software.com/support/topic/linking-amp-and-cannonical-pages/ Sun, 11 Mar 2018 20:36:11 +0000 ConsiderThis1 Replies: 5

I think I’m beginning to see why you liked Montezuma so much. When I go to Inspect, Miteri is not nearly as streamlined as Montezuma…

I would think that affects speed… but I’ve given up on improving my page speeds. I’m now focusing on how Google wants AMP pages linked to cannonical pages. I think mine are.

But, I don’t understand whether it’s the way something is positioned in the menu that creates the very long page names, or if it’s the fact I filled in “parent” information for a lot of pages, showing what page preceded another…

My page names, when I copy a URL for Twitter, are hugely long. Is that because of the page’s position in my menu? or… what?

Since I don’t understand, I’m also confused about linking my desktop pages with their long URLs, with my AMP pages which have a different menu… Should I remake my AMP menu to be the same as desktop? Only AMP seems to be structured differently. For instance, in AMP’s menu my home page doesn’t have items under it…

They’ve vastly improved the AMP menu, so maybe my AMP menu reflects me making it before the improvements…

I hope you’re having a Terrific and Lovely weekend. ??

Karen

]]>
https://www.ads-software.com/support/topic/a-very-odd-thing-happened/ <![CDATA[a very odd thing happened]]> https://www.ads-software.com/support/topic/a-very-odd-thing-happened/ Fri, 16 Feb 2018 20:47:20 +0000 ConsiderThis1 Replies: 5

You can’t see the problem in the page, but on my dashboard there are a lot of warnings:

2270 Jul 1 20:48 050_start.php -rw-r–r– 1 4296883 15000 7470 Jul 1 20:48 100_head.php -rw-r–r– 1 4296883 15000 5235 Jul 1 20:48 300_comments.php -rw-r–r– 1 4296883 15000 39488 Jul 1 20:48 400_css_settings.php -rw-r–r– 1 4296883 15000 2266 Jul 1 20:48 450_css_files.php -rw-r–r– 1 4296883 15000 15056 Jul 1 20:48 600_main_templates.php -rw-r–r– 1 4296883 15000 22940 Jul 1 20:48 650_sub_templates.php -rw-r–r– 1 4296883 15000 2375 Jul 1 20:48 900_export_import.php -rw-r–r– 1 4296883 15000 1278 Jul 1 20:48 950_admin_settings.php -rw-r–r– 1 4296883 15000 4333 Jul 1 20:48 help.php
Warning: Invalid argument supplied for foreach() in /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/includes/admin.php on line 754

Warning: Invalid argument supplied for foreach() in /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/includes/admin.php on line 794

Warning: Invalid argument supplied for foreach() in /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/includes/admin.php on line 810

Warning: Invalid argument supplied for foreach() in /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/includes/admin.php on line 708

Warning: Invalid argument supplied for foreach() in /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/includes/admin.php on line 871

Warning: Cannot modify header information – headers already sent by (output started at /home/healt411/public_html/health-boundaries/wp-content/themes/montezuma.broken/admin/options/.listing:1) in /home/healt411/public_html/health-boundaries/wp-admin/includes/misc.php on line 1114

I can’t be sure if these are a result of beginning to use UpDraftPlus… Or, if these are a result of having tried Miteri on this site. I had thought Miteri was fine since it worked perfectly on my smaller site, Grow Your Vitamins.

Miteri did not pick up my menu or my sidebar for Health-Boundaries… I don’t know if that’s because of the warnings, or if somehow Miteri caused the warnings…

I put my site back into Montezuma, so I wonder if the warnings arise from something in my Montezuma files???

I’m major confused…

]]>
https://www.ads-software.com/support/topic/is-this-the-code-for-the-two-color-headers/ <![CDATA[Is this the code for the two color headers?]]> https://www.ads-software.com/support/topic/is-this-the-code-for-the-two-color-headers/ Tue, 13 Feb 2018 17:15:29 +0000 ConsiderThis1 Replies: 8

I found this when I searched for the code on this forum for the two color headers in Montezuma… is this what makes the final word or words blue? CrouchingBruin wrote this two years ago…

You can either go through all of the virtual CSS files, find the rules for firstpart, and comment out the color property, or add an overriding rule for firstpart at the end of the various.css virtual CSS file. For example, try adding this to the end of your virtual.css file:

#sitetitle a .firstpart,
.hentry h2 a .firstpart,
.hentry h1 .firstpart,
.hentry:hover h2 a .firstpart,
.widget h3 span .firstpart,
#menu1 > li > a span.firstpart {
color: inherit;
}

]]>
https://www.ads-software.com/support/topic/what-does-one-do-when-a-theme-isnt-updated/ <![CDATA[What does one do when a theme isn’t updated???]]> https://www.ads-software.com/support/topic/what-does-one-do-when-a-theme-isnt-updated/ Sat, 10 Feb 2018 18:09:54 +0000 ConsiderThis1 Replies: 20

I’m confused about what to do if Montezuma is not updated and as a result doesn’t work as perfectly with new versions of WordPress.

If I simply get a new theme, won’t all my blue words at the end of titles disappear???

What have you all done???

Karen

]]>
https://www.ads-software.com/support/topic/some-of-my-images-are-not-centering-on-all-pages/ <![CDATA[some of my images are not centering on all pages]]> https://www.ads-software.com/support/topic/some-of-my-images-are-not-centering-on-all-pages/ Sat, 10 Feb 2018 18:05:42 +0000 ConsiderThis1 Replies: 0

I thought it was a bug in 4.9.4 but when I reported it a tech got back to me with CSS he said I should add to my theme, but it doesn’t want to add …

This is the ticket I submitted, and the reply:

#43277: in 4.9.4 a lot of my images align left when they are supposed to align
center
—————————+———————-
Reporter: ConsiderThis1 | Owner:
Type: defect (bug) | Status: closed
Priority: normal | Milestone:
Component: Media | Version: 4.9.4
Severity: normal | Resolution: invalid
Keywords: | Focuses:
—————————+———————-
Changes (by SergeyBiryukov):

* status: new => closed
* resolution: => invalid
* component: General => Media
* milestone: Awaiting Review =>

Comment:

Hi @considerthis1, welcome to WordPress Trac! Thanks for the report.

The images should align correctly if you add these styles in Appearance →
Customize → Additional CSS:
{{{
.wp-caption img[class*=”wp-image-“] {
display: block;
margin-left: auto;
margin-right: auto;
}
}}}
It doesn’t look the issue was caused by the upgrade, but rather by these
styles missing in your theme. This Trac is used for enhancements and bug
reporting for the WordPress core software, please try the
[https://ru.www.ads-software.com/support/ support forums] if you need any further
help with your site.

]]>
https://www.ads-software.com/support/topic/have-you-encountered-the-structured-data-hentry-errors/ <![CDATA[Have you encountered the Structured Data Hentry Errors?]]> https://www.ads-software.com/support/topic/have-you-encountered-the-structured-data-hentry-errors/ Thu, 20 Apr 2017 10:56:03 +0000 ConsiderThis1 Replies: 1

I’ve added All in One Schema.org Rich Snippets, which test out without errors, but I am still getting Structured Data “hentry” errors. The article I’ve found suggest adding code to the functions php… But I can’t find a functions php file in Montezuma. I’m unclear whether the functions php is meant to remove the hentry file and thus eliminate the error, or if it somehow provides the missing structured data.

If you’ve encountered the error, how did you fix it???

]]>
https://www.ads-software.com/support/topic/im-the-only-one-still-asking-questions-here/ <![CDATA[I’m the only one still asking questions here :-(]]> https://www.ads-software.com/support/topic/im-the-only-one-still-asking-questions-here/ Sun, 02 Apr 2017 01:53:24 +0000 ConsiderThis1 Replies: 8

https://health-boundaries.com/

I have my sites all switched over to https, using the Free Cloudflare SSL certificate.

But each of my sites has 9 10 11 Warnings about Mixed Content because the Montezuma icons are http.

The plugin by Fact Maven, Remove HTTP, works really well on everything but the Montezuma icons…

How can I make them https?

I’m really sorry to keep bothering you… But I like this theme a lot and don’t want to change to the generic WordPress ones.

]]>
https://www.ads-software.com/support/topic/amp-https-and-montezuma-how-do-i-set-icons/ <![CDATA[AMP, https, and Montezuma… How do I set icons?]]> https://www.ads-software.com/support/topic/amp-https-and-montezuma-how-do-i-set-icons/ Tue, 14 Mar 2017 22:32:01 +0000 ConsiderThis1 Replies: 1

https://health-boundaries.com/fingernails-2/

apparently if I remove the http or https and just leave the // then when a page is called the correct thing is loaded. InMotion Hosting used the plugin Remove http by Fact Mavin to remove the http, and it appears to have worked for everything but the Montezuma icons.. of which there appear to be 9… accounting for 9 warnings in Inspect.

I can’t find where the icons show their http… Is this something I can change using “Various”???

As an aside, people on Twitter took screen shots of my site for me so that I could see the changes I made. No matter how many times I clear my caches, the changes to theme type things don’t appear for me. The first time the background color change appeared was after InMotion Hosting switched my site to https… using that plugin Remove http.

]]>
https://www.ads-software.com/support/topic/is-source-code-something-i-make-in-each-web-page/ <![CDATA[Is “source code” something I make in each web page?]]> https://www.ads-software.com/support/topic/is-source-code-something-i-make-in-each-web-page/ Fri, 10 Mar 2017 02:41:04 +0000 ConsiderThis1 Replies: 0

I’m trying to get my website to have the little green lock. Cloudflare says it will appear … but I don’t understand if I’m making the present mixed content source code, like by using conflicting plugins or something, or if it’s something that results from some aspect of my hosting. My hosting’s answer is that I should spend $124.

I am currently seeing several mixed content errors. Mixed content errors mean that your website is being loaded over HTTPS but some of the resources are being loaded over HTTP. To fix this you will need to edit your source code and change all resources to load over a relative path, or directly over HTTPS.

For example, if you load your images with a full URL:

You would want to change this to:

By removing the http:, the browser will use whichever protocol the visitor is already using. See this article for more information.

Once you fix these errors you should start seeing the green lock icon in your browser.

]]>
https://www.ads-software.com/support/topic/should-i-remove-breadcrumbs-for-better-mobile/ <![CDATA[Should I remove Breadcrumbs for Better Mobile?]]> https://www.ads-software.com/support/topic/should-i-remove-breadcrumbs-for-better-mobile/ Thu, 09 Mar 2017 18:47:09 +0000 ConsiderThis1 Replies: 3

https://mobiletest.me/iphone_5_emulator/?u=https://www.health-boundaries.com/fingernails/?amp

In the AMP for WP version of my site, it doesn’t seem as if the Breadcrumbs are active. So, would it be better, do you think, to remove the breadcrumbs?

In the Mobile version of my site, without AMP, the breadcrumbs take up a lot of space:

https://mobiletest.me/iphone_5_emulator/?u=https://www.health-boundaries.com/fingernails/

I’ve read article that say YES Breadcrumbs are useful, but other articles say the opposite… What’s your opinion? in view of the high incidence of mobile use today…

]]>
https://www.ads-software.com/support/topic/removing-some-white-space-better-for-amp/ <![CDATA[removing some white space … Better for AMP?]]> https://www.ads-software.com/support/topic/removing-some-white-space-better-for-amp/ Thu, 09 Mar 2017 18:11:27 +0000 ConsiderThis1 Replies: 2

https://mobiletest.me/iphone_5_emulator/?u=https://www.health-boundaries.com/?amp

Hi, If I had a little less white space above the fingernail image, then some of my text would show… How do I reduce that white space???

]]>
https://www.ads-software.com/support/topic/custom-css-option-not-on-one-site/ <![CDATA[Custom CSS option not on one site]]> https://www.ads-software.com/support/topic/custom-css-option-not-on-one-site/ Mon, 06 Mar 2017 18:24:31 +0000 ConsiderThis1 Replies: 1

https://www.off-grid-insights.com/

Further to my concern that the new WordPress Core change to allow easy customizing keeps CSS changes made in Montezuma Appearance from appearing. my site Off Grid Insights was off WordPress when the change went into effect. I would guess that is the reason I don’t have the CSS option on that site.

What’s interesting, though, is that when I make the background color change for Off Grid, in the Montezuma Appearance area for Content and Layout, they appear on my site.

I’m not going to see if I can put the space back above the tagline for my Health site… I thought I tried without success, and blamed the Core change, but I can’t be sure so I’m going to go try again.

??

]]>
https://www.ads-software.com/support/topic/does-montezuma-still-work/ <![CDATA[Does Montezuma still work?]]> https://www.ads-software.com/support/topic/does-montezuma-still-work/ Fri, 10 Feb 2017 18:28:10 +0000 ConsiderThis1 Replies: 10

https://www.health-boundaries.com/

I can’t get changes I make in “appearance” to show … at least not for me no matter which browser I use: Chrome, IE, or Firefox.

I purge my caches. I clear my browsing history… and my site continues to have two different very light yellow background colors, the Menu is on two lines now, and the Menu font looks dark gray instead of black.

When I add a new page of post it appears… but for some reason changes to my CSS files don’t appear…

What do you think is going on?

]]>
https://www.ads-software.com/support/topic/my-menu-font-has-become-light-and-large-or-has-it/ <![CDATA[My menu font has become light and large… Or, has it???]]> https://www.ads-software.com/support/topic/my-menu-font-has-become-light-and-large-or-has-it/ Wed, 08 Feb 2017 19:35:24 +0000 ConsiderThis1 Replies: 12

https://www.health-boundaries.com/
My computer isn’t showing me my site accurately. Although my CSS files for Content and Layout each show the background color as #FdFaE3, my computer shows my site looking messy with two different colors. I’ve clearly my caches… waited for the web caches to clear, and still…

So, I don’t know if my menu is weird for me, or for everyone visiting my site…

For me, the menu items have become a large font size and a lighter color. I think they are much harder to read, and my visitors seem to be falling off in number. Though, since most of my visitors are first time visitors, I don’t know that the look is keeping them from visiting.

I can’t work out how to correct the font color and size in the menu, given that I apparently can’t get changes to appear on my computer…

My CSS for menu says the color is black, but it looks like a dark gray to me… I’m so confused…

What do you think?

]]>
https://www.ads-software.com/support/topic/how-can-i-get-rid-of-the-space-above-my-tagline/ <![CDATA[How can I get rid of the space above my tagline?]]> https://www.ads-software.com/support/topic/how-can-i-get-rid-of-the-space-above-my-tagline/ Fri, 18 Nov 2016 22:43:20 +0000 ConsiderThis1 Replies: 3

https://www.health-boundaries.com/fingernails-2/

I’ve looked at the sub-template, Header, for this site and for my other sites where there’s no space above the tagline, and I can’t see any difference to account for a space here and no space in them.

I’ve been changing my header images for my sites, so I may have inadvertently changed something besides the image.

Also, for Off Grid Insights https://www.off-grid-insights.com/ I like the way it’s indented, and for the life of me I cannot figure out what makes it look that way. Please will you tell me? ??

Help???

]]>
https://www.ads-software.com/support/topic/i-cant-find-any-more-color-related-things-in-css/ <![CDATA[I can’t find any more color related things in CSS]]> https://www.ads-software.com/support/topic/i-cant-find-any-more-color-related-things-in-css/ Fri, 28 Oct 2016 15:49:22 +0000 ConsiderThis1 Replies: 4

https://www.grow-your-vitamins.com/

I went back to CrouchingBruin’s original instructions on changing page color. I got the background for most of my page to change, but the top didn’t change. I used Search in each CSS category to look for FFF, thinking that would show me all the possible places I needed to make the change. So, I made the change in body and banner, but my page isn’t uniform. And, I cleared my cache in case it was the cache that had not updated.

Help?????

]]>
https://www.ads-software.com/support/topic/has-anyone-begun-using-amp-with-montezuma/ <![CDATA[Has anyone begun using AMP with Montezuma?]]> https://www.ads-software.com/support/topic/has-anyone-begun-using-amp-with-montezuma/ Thu, 06 Oct 2016 17:38:08 +0000 ConsiderThis1 Replies: 0

My site: https://www.health-boundaries.com/fingernails-2/

About two weeks ago I noticed that I was getting fewer mobile visitors. As per usual, I figured Google was opting not to show my site as high in search results, perhaps especially mobile search results.

Today I got a “Google Publish News” email about AMP. Accelerated Mobile Project. Here’s a link to the introductory video:
https://www.ampproject.org/

I began looking at setting my pages in my least viewed site (so mistakes won’t impact my most viewed site) to conform to AMP. But then… I wasn’t sure if I had to do all of the lines of code, in order for any of them to work, or if I could go at it slowly but surely…

Does anyone here have experience with implementing AMP?

]]>
https://www.ads-software.com/support/topic/comments-box-not-showing-on-all-pages/ <![CDATA[Comments box not showing on all pages]]> https://www.ads-software.com/support/topic/comments-box-not-showing-on-all-pages/ Tue, 27 Sep 2016 20:19:50 +0000 ConsiderThis1 Replies: 7

How can I put a comment box on pages where it’s not showing?
Is there some logical reason, like something I’ve done, that accounts for the comment box not consistently showing?

]]>
https://www.ads-software.com/support/topic/php-catchable-fatal-error-object-of-class-wp_error/ <![CDATA[PHP Catchable fatal error: Object of class WP_Error]]> https://www.ads-software.com/support/topic/php-catchable-fatal-error-object-of-class-wp_error/ Fri, 20 May 2016 21:42:13 +0000 David Favor Replies: 0

There is a duplicate of this problem which was opened + marked as resolved.

Problem is, the “resolution” is to hand edit a theme core file. Very bad.

This problem appears to cause “ERR_CONNECTION_RESET” browser errors as fatal errors break/reset connection mid transmission.

Be great if this fix could be released in a minor dot release.

]]>
https://www.ads-software.com/support/topic/please-tell-me-again-how-not-to-have-the-number-of-comments-show/ <![CDATA[please tell me again how NOT to have the number of comments show]]> https://www.ads-software.com/support/topic/please-tell-me-again-how-not-to-have-the-number-of-comments-show/ Sun, 17 Apr 2016 23:45:09 +0000 ConsiderThis1 Replies: 4

For some reason the number of comments show on one of my sites. I tried copying and pasting the section of a site’s “directions” for a site that works, but the problem site continues to show the number of posts at the top of pages.

I stopped allowing comments when I learned that they can contain malicious code and weird out your site. I don’t understand that at all, so I figured it was best to simply reply by email to people who write comments, and not include them on pages.

If you can explain to me how a comment can lead to a site being hacked, I’d greatly appreciate .

Anyway, I have a really nice comment that just came in and that I’d like to allow to appear, but I don’t want the numbers thing.

So, please would you tell me again how to NOT have the comment number appear at the top of a page.

(As an aside, my site is now getting 2,000 to 5,000 visits a day, which is entirely because I have a responsive site. Thank you so much for all your help in implementing Montezuma ??

]]>
https://www.ads-software.com/support/topic/update-theme-6/ <![CDATA[Update Theme]]> https://www.ads-software.com/support/topic/update-theme-6/ Sun, 10 Apr 2016 15:35:55 +0000 frechi Replies: 4

Ther noe not more upgrade for this theme?

]]>
https://www.ads-software.com/support/topic/reducing-width-of-menu/ <![CDATA[Reducing width of menu]]> https://www.ads-software.com/support/topic/reducing-width-of-menu/ Wed, 02 Mar 2016 01:05:54 +0000 cjyvr Replies: 3

Can’t figure out how to reduce with of menu/sub-menus using CSS. Assistance will be most appreciated!!

]]>
https://www.ads-software.com/support/topic/italian-language-12/ <![CDATA[Italian Language]]> https://www.ads-software.com/support/topic/italian-language-12/ Mon, 22 Feb 2016 16:05:41 +0000 robysan83 Replies: 3

I translated montezuma in italian language. Can you add me in polyglot team?

]]>
https://www.ads-software.com/support/topic/help-685/ <![CDATA[Help]]> https://www.ads-software.com/support/topic/help-685/ Mon, 15 Feb 2016 22:27:36 +0000 petredanroo Replies: 2

I have a web.
Montezuma-child is the theme on wordpress 4.2.3
It is a site for online ads.
I want a plugin that all users can make their account to manage their ads, who wants to do an account on site.
Can someone help me please.

]]>
https://www.ads-software.com/support/topic/make-header-links-the-same-color/ <![CDATA[Make header links the same color]]> https://www.ads-software.com/support/topic/make-header-links-the-same-color/ Tue, 15 Dec 2015 16:59:09 +0000 jonaspalsson Replies: 2

Hi!

I’ve been trying to find a post here with a solution to my problem. The ones I find seem to be old and outdated.

How do I remove the “firstpart” class from being used? Or how do I set it do the default a-link class color?

It’s currently hosted locally, sorry.

Thanks in advance!

]]>
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit