Okay
  Public Ticket #295681
Slow settings with many pages
Closed

Comments

  • Jeroen started the conversation

    This post is a 'reopen' for this 1: http://themenectar.ticksy.com/ticket/295286

    I found out that Wordpress has problems with many pages. I don't know for sure why this is, but i now know that it has to do with the wp_posts table.

    Why posting here then? Because I can't get access to the theme-options. I found out when I empty the whole wp_posts table, the options are just loading fine. So there must be something why the options are won't loading with 7500 pages.

    Is there a solution for this problem? I can deal with slow loading pages, but not with not-loading pages. And because it are just settings, it should be normal loading speed.

    Because I want to know for sure, i tested this out with other theme-settings from other themes and none have problem loading the theme-options. Is there a solution for this problem? I don't want to temp. delete my wp_posts table to edit the options every time :)

  •  1,071
    ThemeNectar replied

    Hey Jeroen,

    It could be from the call to action exclude option which creates a select element with all the sites pages - to test this, try and delete it in the nectar/options/options-init.php file

    array(
    	'id' => 'exclude_cta_pages',
    	'type' => 'pages_multi_select',
    	'title' => __('Pages to Exclude the Call to Action Section', NECTAR_THEME_NAME),
    	'sub_desc' => __('Select any pages you wish to exclude the Call to Action section from. You can select multiple pages.', NECTAR_THEME_NAME),
    	'args' => array(
    		'sort_order' => 'ASC'
    	),
    	'desc' => ''
    ),
    

    Cheers

  • Jeroen replied

    I changed this and it is resolved, tnxs!!