Edit File by line
/home/zeestwma/ajeebong.../wp-conte.../plugins/revslide.../admin/includes
File: tooltips.class.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* @author ThemePunch <info@themepunch.com>
[2] Fix | Delete
* @link https://www.themepunch.com/
[3] Fix | Delete
* @copyright 2024 ThemePunch
[4] Fix | Delete
*/
[5] Fix | Delete
[6] Fix | Delete
if(!defined('ABSPATH')) exit();
[7] Fix | Delete
[8] Fix | Delete
class RevSliderTooltips {
[9] Fix | Delete
[10] Fix | Delete
public static function getTooltips() {
[11] Fix | Delete
[12] Fix | Delete
$translations = array(
[13] Fix | Delete
[14] Fix | Delete
'docs' => __('Docs', 'revslider'),
[15] Fix | Delete
'next_tip' => __('Next Tip'),
[16] Fix | Delete
'got_it' => __('Got It'),
[17] Fix | Delete
'hide_tips' => __("Don't show tooltips again")
[18] Fix | Delete
[19] Fix | Delete
);
[20] Fix | Delete
[21] Fix | Delete
$tooltips = array(
[22] Fix | Delete
[23] Fix | Delete
'help_mode' => array(
[24] Fix | Delete
[25] Fix | Delete
'title' => 'Help Mode',
[26] Fix | Delete
'target' => '.help_wrap',
[27] Fix | Delete
'alignment' => 'bottom',
[28] Fix | Delete
'margin' => '20px 0 0 0',
[29] Fix | Delete
'text' => 'Get information about the different options available for your Slider',
[30] Fix | Delete
'linkText' => 'Learn More',
[31] Fix | Delete
'link' => 'https://www.sliderrevolution.com/help-center/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=faq'
[32] Fix | Delete
[33] Fix | Delete
),
[34] Fix | Delete
'slides' => array(
[35] Fix | Delete
[36] Fix | Delete
'title' => 'Add Slide',
[37] Fix | Delete
'target' => '#add_slide_toolbar_wrap',
[38] Fix | Delete
'alignment' => 'bottom',
[39] Fix | Delete
'margin' => '20px 0 0 0',
[40] Fix | Delete
'text' => "Add new Slides, reorder your current Slides and manage the Module's global content",
[41] Fix | Delete
'linkText' => 'Learn More',
[42] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/slide-management/'
[43] Fix | Delete
[44] Fix | Delete
),
[45] Fix | Delete
'add_layer' => array(
[46] Fix | Delete
[47] Fix | Delete
'title' => 'Add Layer',
[48] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[49] Fix | Delete
'alignment' => 'bottom',
[50] Fix | Delete
'margin' => '20px 0 0 0',
[51] Fix | Delete
'text' => 'Add new content to the currently active Slide'
[52] Fix | Delete
[53] Fix | Delete
),
[54] Fix | Delete
'tooltip_button' => array(
[55] Fix | Delete
[56] Fix | Delete
'title' => 'Tooltip Button',
[57] Fix | Delete
'target' => '.tooltip_wrap',
[58] Fix | Delete
'alignment' => 'bottom',
[59] Fix | Delete
'margin' => '20px 0 0 0',
[60] Fix | Delete
'text' => 'Enable the tooltip wizard for a quick overview of the editor'
[61] Fix | Delete
[62] Fix | Delete
),
[63] Fix | Delete
'undo_redo' => array(
[64] Fix | Delete
[65] Fix | Delete
'title' => 'Undo Redo',
[66] Fix | Delete
'target' => '.undo_redo_wrap',
[67] Fix | Delete
'alignment' => 'bottom',
[68] Fix | Delete
'margin' => '20px 0 0 0',
[69] Fix | Delete
'text' => "Undo or redo changes you've made while using the editor"
[70] Fix | Delete
[71] Fix | Delete
),
[72] Fix | Delete
'quick_style' => array(
[73] Fix | Delete
[74] Fix | Delete
'title' => 'Quick Style Layer',
[75] Fix | Delete
'target' => '#quick_style_trigger',
[76] Fix | Delete
'alignment' => 'bottom',
[77] Fix | Delete
'margin' => '20px 0 0 0',
[78] Fix | Delete
'text' => 'Add pre-styled headlines, paragraph text and buttons to the current Slide'
[79] Fix | Delete
[80] Fix | Delete
),
[81] Fix | Delete
'device_switcher' => array(
[82] Fix | Delete
[83] Fix | Delete
'title' => 'Device View Switcher',
[84] Fix | Delete
'target' => '#main_screenselector',
[85] Fix | Delete
'alignment' => 'bottom',
[86] Fix | Delete
'margin' => '20px 0 0 0',
[87] Fix | Delete
'trigger' => '#main_screenselector:visible',
[88] Fix | Delete
'text' => "Adjust your content's size and position for different screen sizes"
[89] Fix | Delete
[90] Fix | Delete
),
[91] Fix | Delete
'layer_selections' => array(
[92] Fix | Delete
[93] Fix | Delete
'title' => 'Layer Selections',
[94] Fix | Delete
'target' => '#toolkit_selector_wrap',
[95] Fix | Delete
'alignment' => 'bottom',
[96] Fix | Delete
'margin' => '20px 0 0 0',
[97] Fix | Delete
'text' => 'Choose the way you would like to select multiple Layers on the stage'
[98] Fix | Delete
[99] Fix | Delete
),
[100] Fix | Delete
'slider_settings' => array(
[101] Fix | Delete
[102] Fix | Delete
'title' => 'Slider Settings',
[103] Fix | Delete
'target' => '#module_settings_trigger',
[104] Fix | Delete
'alignment' => 'bottom',
[105] Fix | Delete
'margin' => '20px 0 0 0',
[106] Fix | Delete
'elementcss' => 'width: 80px',
[107] Fix | Delete
'focus' => 'none',
[108] Fix | Delete
'trigger' => array('#module_settings_trigger'),
[109] Fix | Delete
'text' => "Adjust the module's Layout and set its Slideshow behavior"
[110] Fix | Delete
[111] Fix | Delete
),
[112] Fix | Delete
'slider_navigation' => array(
[113] Fix | Delete
[114] Fix | Delete
'title' => 'Slider Navigation',
[115] Fix | Delete
'target' => '#module_navigation_trigger',
[116] Fix | Delete
'alignment' => 'bottom',
[117] Fix | Delete
'margin' => '20px 0 0 0',
[118] Fix | Delete
'elementcss' => 'width: 80px',
[119] Fix | Delete
'focus' => 'none',
[120] Fix | Delete
'trigger' => array('#module_navigation_trigger'),
[121] Fix | Delete
'text' => 'Add a variety of navigation elements to your Slider'
[122] Fix | Delete
[123] Fix | Delete
),
[124] Fix | Delete
'slide_settings' => array(
[125] Fix | Delete
[126] Fix | Delete
'title' => 'Slide Settings',
[127] Fix | Delete
'target' => '#module_slide_trigger',
[128] Fix | Delete
'alignment' => 'bottom-left',
[129] Fix | Delete
'margin' => '20px 0 0 78px',
[130] Fix | Delete
'elementcss' => 'width: 80px',
[131] Fix | Delete
'focus' => 'none',
[132] Fix | Delete
'trigger' => array('#module_slide_trigger'),
[133] Fix | Delete
'text' => "Set the Slide's main background and slide-change animation"
[134] Fix | Delete
[135] Fix | Delete
),
[136] Fix | Delete
'layer_settings' => array(
[137] Fix | Delete
[138] Fix | Delete
'title' => 'Layer Settings',
[139] Fix | Delete
'target' => '#module_layers_trigger',
[140] Fix | Delete
'alignment' => 'bottom-left',
[141] Fix | Delete
'margin' => '20px 0 0 78px',
[142] Fix | Delete
'elementcss' => 'width: 80px',
[143] Fix | Delete
'focus' => 'none',
[144] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[145] Fix | Delete
'text' => "Adjust the size and position for your Slide's content"
[146] Fix | Delete
[147] Fix | Delete
),
[148] Fix | Delete
'shortcode' => array(
[149] Fix | Delete
[150] Fix | Delete
'title' => 'Title/Shortcode',
[151] Fix | Delete
'target' => '#sr_shortcode',
[152] Fix | Delete
'placer' => '#rs_shortcode_label',
[153] Fix | Delete
'alignment' => 'left',
[154] Fix | Delete
'margin' => '-4px 0 0 -17px',
[155] Fix | Delete
'trigger' => array('#module_settings_trigger', '#gst_sl_1'),
[156] Fix | Delete
'section' => 'Module General Options -> Title',
[157] Fix | Delete
'text' => 'The shortcode for the module is located here.'
[158] Fix | Delete
[159] Fix | Delete
),
[160] Fix | Delete
'back' => array(
[161] Fix | Delete
[162] Fix | Delete
'title' => 'Back to Plugin Admin Page',
[163] Fix | Delete
'target' => '#back_to_overview',
[164] Fix | Delete
'alignment' => 'bottom-right',
[165] Fix | Delete
'margin' => '20px 0 0 -90px',
[166] Fix | Delete
'text' => "Click here to go back to the plugin's main admin page"
[167] Fix | Delete
[168] Fix | Delete
),
[169] Fix | Delete
'add_slide' => array(
[170] Fix | Delete
[171] Fix | Delete
'title' => 'Add Slide',
[172] Fix | Delete
'target' => '#add_slide_toolbar_wrap',
[173] Fix | Delete
'focus' => '.toolbar_dd_subdrop_wrap',
[174] Fix | Delete
'alignment' => 'top-right',
[175] Fix | Delete
'margin' => '-5px 0 0 20px',
[176] Fix | Delete
'cssClass' => 'tip-hover',
[177] Fix | Delete
'text' => 'Add a new Slide to the Slider',
[178] Fix | Delete
'linkText' => 'Learn More',
[179] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/slide-management/'
[180] Fix | Delete
[181] Fix | Delete
),
[182] Fix | Delete
'global_layers' => array(
[183] Fix | Delete
[184] Fix | Delete
'title' => 'Global Layers',
[185] Fix | Delete
'target' => '#add_slide_toolbar_wrap',
[186] Fix | Delete
'focus' => '.static-slide-btn',
[187] Fix | Delete
'alignment' => 'top-right',
[188] Fix | Delete
'margin' => '-5px 0 0 20px',
[189] Fix | Delete
'cssClass' => 'tip-hover tip-hover-staticlayers',
[190] Fix | Delete
'text' => 'Content that should always be visible throughout the life-cycle of your Slider exists here',
[191] Fix | Delete
'linkText' => 'Learn More',
[192] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/global-layers/'
[193] Fix | Delete
[194] Fix | Delete
),
[195] Fix | Delete
'slide_order' => array(
[196] Fix | Delete
[197] Fix | Delete
'title' => 'Change Slide Order',
[198] Fix | Delete
'target' => '#add_slide_toolbar_wrap',
[199] Fix | Delete
'focus' => '.slide_list_element.selected',
[200] Fix | Delete
'alignment' => 'top-right',
[201] Fix | Delete
'margin' => '-5px 0 0 20px',
[202] Fix | Delete
'cssClass' => 'tip-hover tip-hover-slideorder',
[203] Fix | Delete
'text' => 'Drag these menu items on top of one another to change the order of your Slides',
[204] Fix | Delete
'linkText' => 'Learn More',
[205] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/slide-management/#switch-reorder-slides'
[206] Fix | Delete
[207] Fix | Delete
),
[208] Fix | Delete
'add_layer_text' => array(
[209] Fix | Delete
[210] Fix | Delete
'title' => 'Add Text Layer',
[211] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[212] Fix | Delete
'focus' => '#toolbar_add_layer_text',
[213] Fix | Delete
'alignment' => 'top-right',
[214] Fix | Delete
'margin' => '-5px 0 0 20px',
[215] Fix | Delete
'cssClass' => 'tip-hover tip-hover-text',
[216] Fix | Delete
'text' => 'Add a text element to the current Slide',
[217] Fix | Delete
'linkText' => 'Learn More',
[218] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[219] Fix | Delete
[220] Fix | Delete
),
[221] Fix | Delete
'add_layer_image' => array(
[222] Fix | Delete
[223] Fix | Delete
'title' => 'Add Image Layer',
[224] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[225] Fix | Delete
'focus' => '#toolbar_add_layer_image',
[226] Fix | Delete
'alignment' => 'top-right',
[227] Fix | Delete
'margin' => '-5px 0 0 20px',
[228] Fix | Delete
'cssClass' => 'tip-hover tip-hover-image',
[229] Fix | Delete
'text' => 'Add an image to the current Slide',
[230] Fix | Delete
'linkText' => 'Learn More',
[231] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[232] Fix | Delete
[233] Fix | Delete
),
[234] Fix | Delete
'add_layer_button' => array(
[235] Fix | Delete
[236] Fix | Delete
'title' => 'Add Button Layer',
[237] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[238] Fix | Delete
'focus' => '#toolbar_add_layer_button',
[239] Fix | Delete
'alignment' => 'top-right',
[240] Fix | Delete
'margin' => '-5px 0 0 20px',
[241] Fix | Delete
'cssClass' => 'tip-hover tip-hover-button',
[242] Fix | Delete
'text' => 'Add a pre-styled button to the current Slide',
[243] Fix | Delete
'linkText' => 'Learn More',
[244] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[245] Fix | Delete
[246] Fix | Delete
),
[247] Fix | Delete
'add_layer_shape' => array(
[248] Fix | Delete
[249] Fix | Delete
'title' => 'Add Shape Layer',
[250] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[251] Fix | Delete
'focus' => '#toolbar_add_layer_shape',
[252] Fix | Delete
'alignment' => 'top-right',
[253] Fix | Delete
'margin' => '-5px 0 0 20px',
[254] Fix | Delete
'cssClass' => 'tip-hover tip-hover-shape',
[255] Fix | Delete
'text' => 'Shapes are elements with a background colors but not content',
[256] Fix | Delete
'linkText' => 'Learn More',
[257] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[258] Fix | Delete
[259] Fix | Delete
),
[260] Fix | Delete
'add_layer_video' => array(
[261] Fix | Delete
[262] Fix | Delete
'title' => 'Add Video Layer',
[263] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[264] Fix | Delete
'focus' => '#toolbar_add_layer_video',
[265] Fix | Delete
'alignment' => 'top-right',
[266] Fix | Delete
'margin' => '-5px 0 0 20px',
[267] Fix | Delete
'cssClass' => 'tip-hover tip-hover-video',
[268] Fix | Delete
'text' => 'Add a YouTube, Vimeo or HTML5 video to the current Slide',
[269] Fix | Delete
'linkText' => 'Learn More',
[270] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[271] Fix | Delete
[272] Fix | Delete
),
[273] Fix | Delete
'add_layer_audio' => array(
[274] Fix | Delete
[275] Fix | Delete
'title' => 'Add Audio Layer',
[276] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[277] Fix | Delete
'focus' => '#toolbar_add_layer_audio',
[278] Fix | Delete
'alignment' => 'top-right',
[279] Fix | Delete
'margin' => '-5px 0 0 20px',
[280] Fix | Delete
'cssClass' => 'tip-hover tip-hover-audio',
[281] Fix | Delete
'text' => 'Add sound to the current Slide',
[282] Fix | Delete
'linkText' => 'Learn More',
[283] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[284] Fix | Delete
[285] Fix | Delete
),
[286] Fix | Delete
'add_layer_object' => array(
[287] Fix | Delete
[288] Fix | Delete
'title' => 'Add Object Layer',
[289] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[290] Fix | Delete
'focus' => '#toolbar_add_layer_object',
[291] Fix | Delete
'alignment' => 'top-right',
[292] Fix | Delete
'margin' => '-5px 0 0 20px',
[293] Fix | Delete
'cssClass' => 'tip-hover tip-hover-object',
[294] Fix | Delete
'text' => 'Add a simple icon or SVG element to the current Slide',
[295] Fix | Delete
'linkText' => 'Learn More',
[296] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[297] Fix | Delete
[298] Fix | Delete
),
[299] Fix | Delete
'add_layer_row' => array(
[300] Fix | Delete
[301] Fix | Delete
'title' => 'Add Row',
[302] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[303] Fix | Delete
'focus' => '#toolbar_add_layer_row',
[304] Fix | Delete
'alignment' => 'top-right',
[305] Fix | Delete
'margin' => '-5px 0 0 20px',
[306] Fix | Delete
'cssClass' => 'tip-hover tip-hover-row',
[307] Fix | Delete
'text' => 'Add a new Row to the current Slide to allow for Rows/Column-based content',
[308] Fix | Delete
'linkText' => 'Learn More',
[309] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/rows-columns/'
[310] Fix | Delete
[311] Fix | Delete
),
[312] Fix | Delete
'add_layer_group' => array(
[313] Fix | Delete
[314] Fix | Delete
'title' => 'Add Group',
[315] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[316] Fix | Delete
'focus' => '#toolbar_add_layer_group',
[317] Fix | Delete
'alignment' => 'top-right',
[318] Fix | Delete
'margin' => '-5px 0 0 20px',
[319] Fix | Delete
'cssClass' => 'tip-hover tip-hover-group',
[320] Fix | Delete
'text' => 'Add a special container to the Slide that can then include multiple Layers grouped together',
[321] Fix | Delete
'linkText' => 'Learn More',
[322] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-groups/'
[323] Fix | Delete
[324] Fix | Delete
),
[325] Fix | Delete
'add_layer_layerlibrary' => array(
[326] Fix | Delete
[327] Fix | Delete
'title' => 'Layer Library',
[328] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[329] Fix | Delete
'focus' => '#add_from_layerlibrary',
[330] Fix | Delete
'alignment' => 'top-right',
[331] Fix | Delete
'margin' => '-5px 0 0 20px',
[332] Fix | Delete
'cssClass' => 'tip-hover tip-hover-layerlibrary',
[333] Fix | Delete
'text' => 'Add a text-based template that includes a predefined style and animation',
[334] Fix | Delete
'linkText' => 'Learn More',
[335] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[336] Fix | Delete
[337] Fix | Delete
),
[338] Fix | Delete
'add_layer_importlayer' => array(
[339] Fix | Delete
[340] Fix | Delete
'title' => 'Import Layer',
[341] Fix | Delete
'target' => '#add_layer_toolbar_wrap',
[342] Fix | Delete
'focus' => '#import_layers',
[343] Fix | Delete
'alignment' => 'top-right',
[344] Fix | Delete
'margin' => '-5px 0 0 20px',
[345] Fix | Delete
'cssClass' => 'tip-hover tip-hover-importlayer',
[346] Fix | Delete
'text' => 'Import a Layer from another Slider or Slide',
[347] Fix | Delete
'linkText' => 'Learn More',
[348] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/layer-content/'
[349] Fix | Delete
[350] Fix | Delete
),
[351] Fix | Delete
'delete_layer' => array(
[352] Fix | Delete
[353] Fix | Delete
'title' => 'Delete Layer',
[354] Fix | Delete
'target' => '#do_delete_layer',
[355] Fix | Delete
'alignment' => 'bottom',
[356] Fix | Delete
'margin' => '20px 0 0 0',
[357] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[358] Fix | Delete
'text' => 'Delete the currently selected Layer',
[359] Fix | Delete
'linkText' => 'Learn More',
[360] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[361] Fix | Delete
[362] Fix | Delete
),
[363] Fix | Delete
'duplicate_layer' => array(
[364] Fix | Delete
[365] Fix | Delete
'title' => 'Duplicate Layer',
[366] Fix | Delete
'target' => '#duplicate_btn_icon',
[367] Fix | Delete
'focus' => '#do_duplicate_layer',
[368] Fix | Delete
'alignment' => 'top-left',
[369] Fix | Delete
'margin' => '-5px 0 0 -20px',
[370] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[371] Fix | Delete
'cssClass' => 'tip-hover tip-hover-duplicate',
[372] Fix | Delete
'text' => 'Duplicate the currently selected Layer',
[373] Fix | Delete
'linkText' => 'Learn More',
[374] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[375] Fix | Delete
[376] Fix | Delete
),
[377] Fix | Delete
'copy_layer' => array(
[378] Fix | Delete
[379] Fix | Delete
'title' => 'Copy Layer',
[380] Fix | Delete
'target' => '#duplicate_btn_icon',
[381] Fix | Delete
'focus' => '#do_copy_layer',
[382] Fix | Delete
'alignment' => 'top-left',
[383] Fix | Delete
'margin' => '-5px 0 0 -20px',
[384] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[385] Fix | Delete
'cssClass' => 'tip-hover tip-hover-copy',
[386] Fix | Delete
'text' => 'Copy the current Layer and paste it into another Slide',
[387] Fix | Delete
'linkText' => 'Learn More',
[388] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[389] Fix | Delete
[390] Fix | Delete
),
[391] Fix | Delete
'paste_layer' => array(
[392] Fix | Delete
[393] Fix | Delete
'title' => 'Paste Layer',
[394] Fix | Delete
'target' => '#duplicate_btn_icon',
[395] Fix | Delete
'focus' => '#do_paste_layer',
[396] Fix | Delete
'alignment' => 'top-left',
[397] Fix | Delete
'margin' => '-5px 0 0 -20px',
[398] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[399] Fix | Delete
'cssClass' => 'tip-hover tip-hover-paste',
[400] Fix | Delete
'text' => 'Paste a copied Layer into the current Slide',
[401] Fix | Delete
'linkText' => 'Learn More',
[402] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[403] Fix | Delete
[404] Fix | Delete
),
[405] Fix | Delete
'lock_layers' => array(
[406] Fix | Delete
[407] Fix | Delete
'title' => 'Lock Layers',
[408] Fix | Delete
'target' => '#do_lock_layer',
[409] Fix | Delete
'focus' => '#toggle_lock_layer',
[410] Fix | Delete
'alignment' => 'top-left',
[411] Fix | Delete
'margin' => '-5px 0 0 -20px',
[412] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[413] Fix | Delete
'cssClass' => 'tip-hover tip-hover-lock',
[414] Fix | Delete
'text' => 'Lock the currently selected Layer(s) from being edited',
[415] Fix | Delete
'linkText' => 'Learn More',
[416] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[417] Fix | Delete
[418] Fix | Delete
),
[419] Fix | Delete
'unlock_layers' => array(
[420] Fix | Delete
[421] Fix | Delete
'title' => 'Unlock Layers',
[422] Fix | Delete
'target' => '#do_lock_layer',
[423] Fix | Delete
'focus' => '#unlock_all_layer',
[424] Fix | Delete
'alignment' => 'top-left',
[425] Fix | Delete
'margin' => '-5px 0 0 -20px',
[426] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[427] Fix | Delete
'cssClass' => 'tip-hover tip-hover-unlock',
[428] Fix | Delete
'text' => 'Unlock the currently selected Layers so they can be edited',
[429] Fix | Delete
'linkText' => 'Learn More',
[430] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[431] Fix | Delete
[432] Fix | Delete
),
[433] Fix | Delete
'hide_highlight_boxes' => array(
[434] Fix | Delete
[435] Fix | Delete
'title' => 'Hide Highlight Boxes',
[436] Fix | Delete
'target' => '#do_show_layer',
[437] Fix | Delete
'focus' => '#hide_highlight_boxes',
[438] Fix | Delete
'alignment' => 'top-left',
[439] Fix | Delete
'margin' => '-5px 0 0 -20px',
[440] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[441] Fix | Delete
'cssClass' => 'tip-hover tip-hover-highlightboxes',
[442] Fix | Delete
'text' => "Hide the editor's outline guide markers",
[443] Fix | Delete
'linkText' => 'Learn More',
[444] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[445] Fix | Delete
[446] Fix | Delete
),
[447] Fix | Delete
'show_hide_selected' => array(
[448] Fix | Delete
[449] Fix | Delete
'title' => 'Show/Hide Selected',
[450] Fix | Delete
'target' => '#do_show_layer',
[451] Fix | Delete
'focus' => '#toggle_visible_layer',
[452] Fix | Delete
'alignment' => 'top-left',
[453] Fix | Delete
'margin' => '-5px 0 0 -20px',
[454] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[455] Fix | Delete
'cssClass' => 'tip-hover tip-hover-showhide',
[456] Fix | Delete
'text' => "Show the editor's outline guide markers for the selected Layers",
[457] Fix | Delete
'linkText' => 'Learn More',
[458] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[459] Fix | Delete
[460] Fix | Delete
),
[461] Fix | Delete
'set_all_visible' => array(
[462] Fix | Delete
[463] Fix | Delete
'title' => 'Set All Visible',
[464] Fix | Delete
'target' => '#do_show_layer',
[465] Fix | Delete
'focus' => '#visible_all_layer',
[466] Fix | Delete
'alignment' => 'top-left',
[467] Fix | Delete
'margin' => '-5px 0 0 -20px',
[468] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[469] Fix | Delete
'cssClass' => 'tip-hover tip-hover-setallvisible',
[470] Fix | Delete
'text' => "Show all outline guide markers for the editor",
[471] Fix | Delete
'linkText' => 'Learn More',
[472] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[473] Fix | Delete
[474] Fix | Delete
),
[475] Fix | Delete
'change_layer_order' => array(
[476] Fix | Delete
[477] Fix | Delete
'title' => 'Change Layer Order',
[478] Fix | Delete
'target' => '#do_background_layer',
[479] Fix | Delete
'alignment' => 'bottom',
[480] Fix | Delete
'margin' => '20px 0 0 0',
[481] Fix | Delete
'trigger' => array('#module_layers_trigger'),
[482] Fix | Delete
'text' => 'Use these arrows to adjust the z-index/stacking order of the currently selected Layer',
[483] Fix | Delete
'linkText' => 'Learn More',
[484] Fix | Delete
'link' => 'https://www.sliderrevolution.com/documentation/editor-overview/'
[485] Fix | Delete
[486] Fix | Delete
),
[487] Fix | Delete
'layout_type' => array(
[488] Fix | Delete
[489] Fix | Delete
'title' => 'Layout Type',
[490] Fix | Delete
'target' => '#rs-layout-type',
[491] Fix | Delete
'placer' => '#rs-layout-type label_a',
[492] Fix | Delete
'focus' => 'none',
[493] Fix | Delete
'alignment' => 'top-left',
[494] Fix | Delete
'margin' => '-4px 0 0 -20px',
[495] Fix | Delete
'trigger' => array('#module_settings_trigger', '#gst_sl_2'),
[496] Fix | Delete
'section' => 'Module General Options -> Layout',
[497] Fix | Delete
'scrollTo' => '#form_slider_layout_layout',
[498] Fix | Delete
'text' => "Optionally set your Slider to display as a carousel or a Hero Scene",
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function