Forum Replies Created

Viewing 15 replies - 16 through 30 (of 33 total)
  • Thread Starter ddhservices

    (@ddhservices)

    I didn’t say that anyone told em to pay for “support” but I’ve gone round and round on the Updraft website and all *I* find is pay for support as it’s not a pre-sale question.

    David I will.

    Thread Starter ddhservices

    (@ddhservices)

    That worked, thank you!

    I have a similar issue but I’ve only run the upgrade once …

    Warning: copy(/home/dd3ndh7/public_html/churchofourlord.org/wp-cron.php) [function.copy]: failed to open stream: Permission denied in /home/dd3ndh7/public_html/churchofourlord.org/wp-admin/includes/class-wp-filesystem-direct.php on line 200

    Warning: copy(/home/dd3ndh7/public_html/churchofourlord.org/wp-cron.php) [function.copy]: failed to open stream: Permission denied in /home/dd3ndh7/public_html/churchofourlord.org/wp-
    admin/includes/class-wp-filesystem-direct.php on line 200
    Could not copy file.: /home/dd3ndh7/public_html/churchofourlord.org/wp-cron.php

    Hoping there is a fix for this, thank you in advance

    Thread Starter ddhservices

    (@ddhservices)

    Yes it is working it just scares me when I see things like the above. Thxs for your reply.

    Does anyone know if the above solution witl work with Vimeo.com ?

    Thank you

    Thread Starter ddhservices

    (@ddhservices)

    My error, sorry

    I need exactly the same information …

    https://feelinggreatlookinggreat.com/

    Is there a way to make the sidebar page selectable? e.g.: on this page – https://feelinggreatlookinggreat.com/promotors/ I’d like to be able to turn the sidebar off and perhaps go 3 columns wide.

    Thank you in advance

    Erin, great plugin thank you for all your work to date and yet to come.

    I’m running the beta on my personal blog https://johndvickers.ddandhservices.com/ and I seem to be having an issue, perhaps a bug. The full calendar is here https://johndvickers.ddandhservices.com/?page_id=1777

    The 1st place I want to use this is on our church site at https://ctkac.ca however I seem to be having two issues. In no particular order

    • in the back end when I enter both an 8 am and a 10 am service that are very similar but physically at two different addresses when saved at 1st I see two events showing the time of which ever event is the latest added. e.g.: using my example of 8 am and 10 am the back end displays two events at 10 am, And the widget displays the 8 am with no visible time yet displays the 10 am event with the time visible.
    • And the second issue is that I now have events in the full calendar displaying the time e.g.: 10 am twice. Once as 10:00 am and secondly as 10a.

    Thank you again
    John Vickers, Owner DD&H Services.

    Same here – hope the author will fix this sometime soon.

    Thread Starter ddhservices

    (@ddhservices)

    One of our guys came up with a quick and dirt way of doing this. In the footer.php file we inserted

    // induce a click to force the widgets to be displayed collapsed
    
                    jQuery(".widgettitle div").hide();
                    jQuery(".widgettitle, .linkcat *:first, .wpg2blockwidget h3").trigger("click");
    });
    // ]]> -->
    </script>
    
    <?php
    	// HTML Inserts: very end of the page
    	echo get_option('mandigo_inserts_veryend');
    ?>

    This is slow but for now, for demonstration purposes it works.

    Thread Starter ddhservices

    (@ddhservices)

    Thank you Andrea_r. I’ll do some more reading in the hope of finding a definitive SSL answer.

    Thread Starter ddhservices

    (@ddhservices)

    Ok great. All of them would be the short answer. In the Demo site I gave in my opening message this would be:

    • Search
    • About Us
    • Worship Services
    • News and Events
    • Links
    • We are members of
    • Services
    • Map & Directions

    And that if any thing else is added it too by default would be collapsed. Personally I think this is an option that should be included with the “Custom Menu” feature in 3.1 .

    Thank you

    Thread Starter ddhservices

    (@ddhservices)

    Yes indeed, here it is … from sidebar.php in Mandigo v. 1.42

    <?php
        // this file defines the default sidebar
        // if you are using widgets, you do not need to edit this file
    
        global $mandigo_options;
    
        // heading level for widget title (h1, h2, div, ...)
        $tag_widget = $mandigo_options['heading_level_widget_title'];
    ?>
        <td id="sidebar1">
            <ul class="sidebars">
    <?php
        // if wp doesn't support sidebars, or if we are not using any widget in sidebar 1
        if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 1')) {
    
            // our search widget, defined in functions.php
            widget_mandigo_search();
    
            // our calendar widget, defined in functions.php
            widget_mandigo_calendar();
    
            // if we are browsing a category archive
            if (is_category()) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the archives for the \'%s\' category.', 'mandigo'),
                    single_cat_title('', false)
                );
            }
    
            // if wp supports tags and this is a tag archive
            elseif (function_exists(is_tag) && is_tag()) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the %s weblog archives for posts tagged \'%s\'.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    ),
                    single_tag_title('', false)
                );
            }
    
            // if this is a daily archive
            elseif (is_day()) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the %s weblog archives for the day %s.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    ),
                    get_the_time(__('l, F jS, Y', 'mandigo'))
                );
            }
    
            // if this is a monthly archive
            elseif (is_month()) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the %s weblog archives for %s.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    ),
                    get_the_time(__('F, Y', 'mandigo'))
                );
            }
    
            // if this is a yearly archive
            elseif (is_year()) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the %s weblog archives for the year %s.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    ),
                    get_the_time('Y')
                );
            }
    
            // if this is a search result
            elseif (is_search()) {
                $what_youre_doing = sprintf(
                    __('You have searched the %s weblog archives for %s. If you are unable to find anything in these search results, you can try one of these links.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    ),
                    '<strong>\''. wp_specialchars($s) .'\'</strong>'
                );
            }
    
            // otherwise, not sure when this is triggered
            elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {
                $what_youre_doing = sprintf(
                    __('You are currently browsing the %s weblog archives.', 'mandigo'),
                    sprintf(
                        '<a href="%s/">%s</a>',
                        get_bloginfo('home'),
                        get_bloginfo('name')
                    )
                );
            }
    
            // make sure the variable has been set
            if ($what_youre_doing) {
    ?>
                <li><?php echo $what_youre_doing; ?></li>
    <?php
            }
    
            // the list of pages
            wp_list_pages(
                array(
                    'sort_column' => 'menu_order',
                    'title_li'    => sprintf(
                        '<%s class="widgettitle">%s</%s>',
                        $tag_widget,
                        str_replace('&', '%26', __('Pages', 'mandigo')),
                        $tag_widget
                    ),
                )
            );
    ?>
    
                <li><<?php echo $tag_widget; ?> class="widgettitle"><?php _e('Categories', 'mandigo'); ?></<?php echo $tag_widget; ?>>
                    <ul>
    <?php
            // the list of categories
            wp_list_cats(
                array(
                    'sort_column'  => 'name',
                    'optioncount'  => 1,
                    'hide_empty'   => 0,
                    'hierarchical' => 1,
                )
            );
    ?>
                    </ul>
                </li>
    
    <?php
            // if wordpress supports tags
            if (function_exists('wp_tag_cloud')) {
    ?>
                <li><<?php echo $tag_widget; ?> class="widgettitle"><?php _e('Tags', 'mandigo'); ?></<?php echo $tag_widget; ?>>
                    <?php wp_tag_cloud(); ?>
                </li>
    <?php
            }
    
            // if this is the frontpage
            if (is_home() || is_page()) {
                // put the blogroll
                get_links_list();
            }
    
            // our meta widget, defined in functions.php
            widget_mandigo_meta();
        }
    ?>
            </ul>
        </td>
    Thread Starter ddhservices

    (@ddhservices)

    anyone?

    Thread Starter ddhservices

    (@ddhservices)

    Thank you very much that gets the site back up but I can not login to the admin pages. When I try I see this Warning: require_once(ABSPATHwp-admin/includes/bookmark.php) [function.require-once]: failed to open stream: No such file or directory in /home/dd3ndh7/public_html/blog.rockslax.com/wp-admin/admin.php on line 10

    Fatal error: require_once() [function.require]: Failed opening required ‘ABSPATHwp-admin/includes/bookmark.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/dd3ndh7/public_html/blog.rockslax.com/wp-admin/admin.php on line 10

    scratching head

Viewing 15 replies - 16 through 30 (of 33 total)