Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all 245086 articles
Browse latest View live

just bloat

$
0
0

Replies: 0

takes a process that is already basic, slows it down, complicates it and makes it cumbersome.


Header

$
0
0

Replies: 0

Header is cutting off on all pages except home page.

I tried to change the bottom of the header.php code like you suggested to another person but it only succeeded in putting TWO headers on the page. One that was cut off and one that wasnt…

PLEASE ASSIST

http://tkorenovations.com
http://tkorenovations.com/about/

Exporting Importing Page Templates

$
0
0

Replies: 0

I have a test site and a live site. I’m trying to Export Page Templates from the test site, and then Importing the Page Templates into the live site. I can Export and Import just fine, but the Page Templates in the live site are problemic.
Some of the Page Templates are inserting a wrong page, and some are inserting multiple pages mixed together.
I’ve examined the json files, the text/copy, and I can not find any difference between the Page Templates within the test site compared to the page templates in the live site.
I’ve also deactivated all plugins, except Elementor and Elmentor Pro, and switched the Theme to Seventeen, and Exported / Imported 3 times.
Any help would be greatly appreciated, as of now, my live site is down, because I can’t get all of the pages loaded onto the site.

php 7x

$
0
0

Replies: 0

Hello is this software compatible with php7?

website crashed – what do to?

$
0
0

Replies: 7

hi guys, something happened to the website. not sure what’s going on.

i get this message on homepage in both FF and chrome.

link https://goo.gl/haQUnc

abstract class ITSEC_Scheduler { const S_HOURLY = 'hourly'; const S_FOUR_DAILY = 'four-daily'; const S_TWICE_DAILY = 'twice-daily'; const S_DAILY = 'daily'; const S_WEEKLY = 'weekly'; const S_MONTHLY = 'monthly'; const LOCK_SCHEDULING = 'scheduling'; /** @var array */ protected $custom_schedules = array(); /** @var array */ protected $loops = array(); /** * Schedule a recurring event. * * Only one event with the given id can be scheduled at a time. * * @param string $schedule * @param string $id * @param array $data * @param array $opts * - fire_at: Manually specify the first time the event should be fired. * * @return bool */ abstract public function schedule( $schedule, $id, $data = array(), $opts = array() ); /** * Schedule a single event. * * Only one event with the given id and same set of data can be scheduled at the same time. * * Unlike Core's CRON implementation, event if a single event is more than 10 minutes in the future, it cannot be scheduled. * * @param int $at * @param string $id * @param array $data * * @return bool */ abstract public function schedule_once( $at, $id, $data = array() ); /** * Schedule a single event to run soon. * * @param string $id * @param array $data * * @return bool */ public function schedule_soon( $id, $data = array() ) { return $this->schedule_once( ITSEC_Core::get_current_time_gmt() + 60 * mt_rand( 1, 10 ), $id, $data ); } /** * Schedule an event loop. * * @param string $id The event ID. * @param array $data Event data. * @param array $opts * - fire_at: Manually specify the first time the event should be fired. */ public function schedule_loop( $id, $data = array(), $opts = array() ) { $start = isset( $opts['fire_at'] ) ? $opts['fire_at'] : ITSEC_Core::get_current_time_gmt() + 60 * mt_rand( 1, 30 ); $this->schedule_once( $start, $id, array_merge( $data, array( 'loop_start' => $start, 'loop_item' => 1, ) ) ); } /** * Is a recurring event scheduled. * * @param string $id * * @return bool */ abstract public function is_recurring_scheduled( $id ); /** * Is a single event scheduled with the given data. * * @param string $id The event ID to check. * @param array|null $data The event data. Pass null to check if any event is scheduled with that ID, * regardless of the data. * * @return bool */ abstract public function is_single_scheduled( $id, $data = array() ); /** * Unschedule a recurring event. * * @param string $id * * @return bool */ abstract public function unschedule( $id ); /** * Unschedule a single event. * * The data specified needs to be identical to the data the single event was scheduled with. * * @param string $id The event ID to unschedule. * @param array|null $data Unschedules the event with the given data. Pass null to delete any and all events matching the ID. * * @return bool */ abstract public function unschedule_single( $id, $data = array() ); /** * Get all of the scheduled recurring events. * * Each event is an array with the following properties. * - id: The ID the event was scheduled with. * - data: The data the event was scheduled with. * - fire_at: The next time the event should be fired. * - schedule: The selected schedule. See S_HOURLY, etc... * * @return array */ abstract public function get_recurring_events(); /** * Get all of the single events. * * Each event is an array with the following properties. * - id: The ID the event was scheduled with. * - data: The data the event was scheduled with. * - fire_at: The time the event should be fired. * * @return array */ abstract public function get_single_events(); /** * Run a recurring event, even if it is not time to. * * This will _not_ update the last fired time. * * @param string $id * * @return void */ abstract public function run_recurring_event( $id ); /** * Run a single event, even if it is not time to. * * This will clear the event from the schedule. * * @param string $id * @param array $data * * @return void */ abstract public function run_single_event( $id, $data = array() ); /** * Code executed on every page load to setup the scheduler. * * @return void */ abstract public function run(); /** * Manually trigger modules to register their scheduled events. * * @return void */ public function register_events() { /** * Register scheduled events. * * Events should be registered in response to a user action, for example activating a module or changing a setting. * Occasionally, iThemes Security will manually ask for all events to be scheduled. * * @param ITSEC_Scheduler $this */ do_action( 'itsec_scheduler_register_events', $this ); } /** * Register a custom schedule. * * @param string $slug * @param int $interval */ public function register_custom_schedule( $slug, $interval ) { $this->custom_schedules[ $slug ] = $interval; } /** * Register an event loop. * * This allows for splitting up a long running process across multiple page loads. * * @param string $id The event ID. * @param string $schedule The schedule between loop starts. This is the maximum amount of time to wait. * @param int $wait Time to wait in seconds between loop parts. */ public function register_loop( $id, $schedule, $wait ) { $this->loops[ $id ] = array( 'schedule' => $schedule, 'wait' => $wait, ); } /** * Get the loop configuration. * * @param string $id * * @return array */ public function get_loop( $id ) { return isset( $this->loops[ $id ] ) ? $this->loops[ $id ] : array(); } /** * Get a lock to be used for scheduling events. * * @return bool */ protected function scheduling_lock() { return ITSEC_Lib::get_lock( self::LOCK_SCHEDULING, 5 ); } /** * Release the lock used for scheduling events. */ protected function scheduling_unlock() { ITSEC_Lib::release_lock( self::LOCK_SCHEDULING ); } /** * Make a job object. * * @param string $id * @param array $data * @param array $opts * * @return ITSEC_Job */ protected function make_job( $id, $data, $opts = array() ) { return new ITSEC_Job( $this, $id, $data, $opts ); } /** * Dispatch the action to execute the scheduled job. * * @param ITSEC_Job $job */ protected final function call_action( ITSEC_Job $job ) { /** * Fires when a scheduled job should be executed. * * @param ITSEC_Job $job */ do_action( "itsec_scheduled_{$job->get_id()}", $job ); } /** * Generate a unique hash of the data. * * @param array $data * * @return string */ protected function hash_data( $data ) { return md5( serialize( $data ) ); } /** * Get the interval for the schedule. * * @param string $schedule * * @return int */ final public function get_schedule_interval( $schedule ) { switch ( $schedule ) { case self::S_HOURLY: return HOUR_IN_SECONDS; case self::S_FOUR_DAILY: return DAY_IN_SECONDS / 4; case self::S_TWICE_DAILY: return DAY_IN_SECONDS / 2; case self::S_DAILY: return DAY_IN_SECONDS; case self::S_WEEKLY: return WEEK_IN_SECONDS; case self::S_MONTHLY: return MONTH_IN_SECONDS; default: return isset( $this->custom_schedules[ $schedule ] ) ? $this->custom_schedules[ $schedule ] : false; } } /** * Run code when the plugin is uninstalled. */ public function uninstall() { } }

website was working fine just last week. now i can’t even login to dashboard. i tried disabling all the plugin. as a matter of fact all the plugins are disabled. but still not working.

please help! thanks in advance.

Ability to select field groups instead of fields

$
0
0

Replies: 0

I like the plugin, but it makes more sense to me to make a field group, and then select it, then to select individual fields which may or may not be attached to the post in question.

If you did a field group, you would be able to select multiple fields at once BY MAKING A NEW FIELD GROUP and selecting it AND THEN ordering / editing it however you want.

Can you change it / make a version that does that instead?

Great plugin 5Stars

$
0
0

Replies: 0

This is really a great plugin and for sure the best FAQ plugin for WordPress!

Recommend PHP version 7.1

$
0
0

Replies: 0

I see the next update to 4.0.3 says the recommended PHP version will be 7.1. Unfortunately, the Cohen theme, which I use and came with my SiteGround account does not work with PHP 7.1. And the theme authors steadfastly refuse me support even though I tell them it came for free with my SiteGround account. If I upgrade but keep my PHP version to 7.0.28 will the plugins operation not be guaranteed?


PHP 7.2.3 Compatibility

$
0
0

Replies: 0

This is really a great plugin and for sure the best FAQ plugin for WordPress!

Could you please look at this warning:

Warning: count(): Parameter must be an array or an object that implements Countable in /wp-content/plugins/arconix-faq/includes/metabox/init.php on line 746

I get it when I upgrade to PHP 7.2.3

Would be great to make your plugin compatible with this PHP version as it is the only one holding me back from upgrading at this point.

Already thanks a lot!

Password protected content not including buy ticket button

$
0
0

Replies: 0

Hey, im using events calendar and events ticket. I setup an event with wordpress page visibility set to password protected.

But as this image, http://i64.tinypic.com/oazsjb.jpg u can see that anyone can still buy the tickets. How do i include the button inside the protected content too?

P/S : The site not using any login/register system.

website wiped

$
0
0

Replies: 0

earlier today I was trying to update my site and was in the wp-admin site and now when I try to log in my website is not found anywhere. I also logged into wordpress.org and there is nothing found for the website I built last may.

DO NOT download… it breaks your WP site

$
0
0

Replies: 0

Enough said. Ridiculous. Luckily, I had a backup that was only one-week old. Thanks goodness I was on vacation or I would have lost a lot of work.

PHP 7.1 Compatibility

$
0
0

Replies: 0

Hi, I was going to upgrade a site to PHP 7.1 and on running a compatibility check UpdraftCentral Dashboard was flagged with the following errors and warnings. (see pastebin link).

https://pastebin.com/CpHWZ1Lb

Is there an update in the pipeline to address PHP 7.1 compatibility and if so do you have an rough ETA?

Many Thanks
Steve

share button image

Connection Reset after clicking page/post updte

$
0
0

Replies: 0

Whenever I wanted update my page/post content, it’ll not save at all and redirect me to an error page.

Error message:

This site can’t be reached
The connection was reset.
Try:
Checking the connection
Checking the proxy and the firewall
Running Windows Network Diagnostics
ERR_CONNECTION_RESET

I have read some forum saying that it is php error. Need to check on the error logs. Do i need to check the logs from the cpanel?


PBC not working with Lukas Dynamic Pricing

$
0
0

Replies: 0

Hi, everything on the website is working perfectly.

But with Dynamic Pricing it is not working. It still renders the pricing I set on AUD.

Categories

$
0
0

Replies: 0

Can you add a feature where you can create children or categories for the popups. For example, i want to create a video library where all videos are in a category or a parent/child relationship.

Elementor 2.0.1 can’t edit Post ,Page

$
0
0

Replies: 0

Yesterday I can edit with elementor 2.0.0 but
Today I update elementer to version 2.0.1
when I want to edit page or post is can’t edit
it stuck on the loading screen.

== Server Environment ==
Operating System: Linux
Software: Apache/2.4.6 (CentOS) PHP/7.1.14
MySQL version: 5.5.56
PHP Version: 7.1.14
PHP Max Input Vars: 1000
PHP Max Post Size: 50M
GD Installed: Yes
Write Permissions: All right
Elementor Library: Connected

== WordPress Environment ==
Version: 4.9.4
Site URL: http://plan.bopp-obec.info
Home URL: http://plan.bopp-obec.info
WP Multisite: No
Max Upload Size: 50 MB
Memory limit: 40M
Permalink Structure: /%postname%/
Language: en-US
Timezone: Asia/Bangkok
Debug Mode: Inactive

== Theme ==
Name: Twenty Seventeen
Version: 1.4
Author: the WordPress team
Child Theme: No

== User ==
Role: administrator
WP Profile lang: en_US
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0

== Active Plugins ==
Anywhere Elementor
Version: 1.0
Author: WebTechStreet

AWSM Team
Version: 1.1.3
Author: AWSM Innovations

Default featured image
Version: 1.6.1
Author: Jan Willem Oostendorp

Download Manager
Version: 2.9.70
Author: Shaon

Duplicate Post
Version: 3.2.1
Author: Enrico Battocchi

Elementor
Version: 2.0.1
Author: Elementor.com

Elementor Addons & Widgets
Version: 1.1.5
Author: ThemeIsle

Elementor Pro
Version: 1.15.5
Author: Elementor.com

Enable Contributor Uploads
Version: 1.1
Author: Road Warrior Creative

Page Templater For Elementor
Version: 1.2.4
Author: ThemeIsle

Seed Buddhist Year
Version: 1.0.2
Author: SeedThemes

Seed Fonts
Version: 1.1.3
Author: SeedThemes

WPDM – Button Templates
Version: 1.2.0
Author: Shaon

WPDM – Data API
Version: 3.0.0
Author: Shaon

WPDM – Extended Short-codes
Version: 2.8.1
Author: Shaon

WPDM – Image Button
Version: 2.4.1
Author: Shaon

WPDM – Import Filebase Data
Version: 1.0
Author:

WPDM – Page Template
Version: 1.1
Author: Shaon

WPDM – Premium Packages
Version: 3.8.9
Author: Shaon

WPDM – TinyMce Button
Version: 2.7.1
Author: Shaon

== Debug ==
Errors:
TypeError: this.getRegion(…) is undefined
at http://plan.bopp-obec.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.1 – 2:88051
2018-03-28 03:01 +00:00
x 5 times

TypeError: Cannot read property ‘currentView’ of undefined
at http://plan.bopp-obec.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.1 – 2:88074
2018-03-28 02:20 +00:00
x 2 times

TypeError: this.getRegion(…) is undefined
at http://plan.bopp-obec.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.1 – 2:88051
2018-03-28 02:15 +00:00
x 7 times

Excellent

$
0
0

Replies: 0

This plugin is life saver. It makes the website migration simple and easy

Loading Incredibly Slow

$
0
0

Replies: 0

This widget is loading super slow and it the last thing to load before my page is finally done. Is there any way to fix this?

Also, is there a way to remove the grey boarder from posts? It is hanging down very far on the bottom and the boarder just does not go with the site’s theme.

Thank you.

Viewing all 245086 articles
Browse latest View live