Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)
  • Thread Starter berestored

    (@berestored)

    No, I can try updating it with the new plugin. I will let you know if it solves the issue. Also, I tried to make a donation and it only allows me to use a Paypal account not just s straight credit card. I will try again.

    Thread Starter berestored

    (@berestored)

    *** all one at a time….

    Thread Starter berestored

    (@berestored)

    Thank you for the response. Unfortunately, it has stopped working after I loaded the first image which worked great. Any second images that I try to load cause the “featured image” to disappear. it will give a reference to it but shows an empty slate in the media gallery and appears that one is attached but the image doesn’t show. I had to deactivate the plugin as it was affecting being able to load images at all.

    It is a real bummer for sure, I had high hopes for your plugin. If you know what could be causing this, please advise. I deactivated all my plugins and reactivated them all at one time and it was this one that was throwing the errors.

    Thread Starter berestored

    (@berestored)

    So if I understand correctly.

    1) Ninja Forms – the core
    2) Layout Styles – enables custom CSS styling and design elements
    3) Front End Editor – Can edit entry without touching wp-admin
    4) Image Uploader – upload original image or replace original with new image
    — Can this work with a series of images (5-10)

    If I wanted my entries to appear in a certain layout on a page, is there a way to bring that information in (i.e. with short codes). Alot of questions, I know.

    Thanks for answering them all so quickly!

    Manning

    Thread Starter berestored

    (@berestored)

    Hi Kevin,

    Yes, that does make sense and I tried it on the demo again. Here is another question for you. I am looking at purchasing additional extensions including the image uploader and front end editor. I only have the layout styles and editor right now. If I create a form, add an entry and then add the front end editor later will it give me the ability to edit my previous entry?

    Meaning, I add an entry (without front end extension purchased), purchase and install the extension, and then have the option to edit the entry? Does it merely just turn the functionality on like it did with the layout styles?

    Thanks for all your help. Really appreciate the quick support.

    Manning

    Thread Starter berestored

    (@berestored)

    Hi,

    One additional question. I noticed on the demo that there was an output page for the novel submissions. Are these manually put in like a blog post or generated dynamically based on user submissions on the input form?

    Also, if a submission is made, is there a way to go back and edit the submission and upload an image or video or does a new submission need to be made?

    Thanks for your help!

    Manning

    Thread Starter berestored

    (@berestored)

    Wow, that was a super fast response!

    I glanced at your demo but will go back and take a better look.

    Thanks so much!

    Thread Starter berestored

    (@berestored)

    Hi forestlaurel,

    I hope someone responds soon. I checked some other sites and it maybe that the PX size is set by Facebook. They recently changed their API so I am not sure it can be customized anymore.

    I have removed it from my site for now because it throws everything off. I am really hoping to get an answer on this discussion, if not I will have to proceed as is.

    Manning

    Thread Starter berestored

    (@berestored)

    <iframe id="f251ecbe0" name="f15777251" scrolling="no" style="border: none; overflow: hidden; height: 21px; width: 450px;" title="Like this content on Facebook." class="fb_ltr" src="http://www.facebook.com/plugins/like.php?api_key=200&locale=en_US&sdk=joey&channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D18%23cb%3Df31db13d7c%26origin%3Dhttp%253A%252F%252Fberestored.us%252Ff30f6c98ec%26domain%3Dberestored.us%26relation%3Dparent.parent&href=http%3A%2F%2Fberestored.us%2Fshop%2Fbasil%2F&node_type=link&width=450&layout=button_count&colorscheme=light&show_faces=false&send=true&extended_social_context=false"></iframe>

    Thread Starter berestored

    (@berestored)

    Hi Jonah,

    Thank you for this. I know you don’t have the time and I wouldn’t expect you to write the code, however, can you give me a sample of a condition, say for outputting the breadcrumb : Home > Events.

    If I can get a sample condition statement I can write the others. I read code well but writing it from scratch is a bit challenging for me.

    Thanks a million again!

    Manning

    Thread Starter berestored

    (@berestored)

    Hi Jonah,

    Thanks for the response.

    Here is the code URL.

    Code in breadcrumbs.php
    http://snippi.com/s/he1ea4y

    Code in functions.php
    http://snippi.com/s/adi9971

    Thanks for your help.

    Manning

    Thread Starter berestored

    (@berestored)

    Hi Robb and Jonah,

    Here is the simple breadcrumb code that is called using the function listed at the top. Do you know just from looking at it how, what, and where I could add your conditional statements? No worries, if not, I am still meeting with my friend next week but thought this would provide some clues.

    Let me know.

    class simple_breadcrumb {
        var $options;
    
        function simple_breadcrumb() {
                $this->options = array(//change this array if you want another output scheme
                'before' => '<span class="breadarrow"> ',
                'after' => ' </span>',
                'delimiter' => '→'
            );
            $markup = $this->options['before'] . $this->options['delimiter'] . $this->options['after'];
            global $post;
            echo '<p class="breadcrumbs"><a href="' . get_bloginfo('url') . '">';
            //bloginfo('name');
            esc_html_e('Home', 'udesign');
            echo "</a>";
            if (!is_front_page()) {
                echo $markup;
            }
            $output = $this->simple_breadcrumb_case($post);
            echo "<span class='current_crumb'>";
            if (is_page() || is_single()) {
                the_title();
            } else {
                echo $output;
            }
            echo " </span></p>";
        }
    
        function simple_breadcrumb_case($der_post) {
            global $post;
            $markup = $this->options['before'].$this->options['delimiter'].$this->options['after'];
            if (is_page()){
                if($der_post->post_parent) {
                    $my_query = get_post($der_post->post_parent);
                    $this->simple_breadcrumb_case($my_query);
                    $link = '<a href="';
                    $link .= get_permalink($my_query->ID);
                    $link .= '">';
                    $link .= ''. get_the_title($my_query->ID) . ''. $markup;
                    echo $link;
                }
                return;
            }
            if(is_single()){
                $category = get_the_category();
                if (is_attachment()){
                    $my_query = get_post($der_post->post_parent);
                    $category = get_the_category($my_query->ID);
                    if( $category != null ) {
                    $ID = $category[0]->cat_ID;
                    echo get_category_parents($ID, TRUE, $markup, FALSE );
                    }
                    previous_post_link("%link $markup");
    
                } elseif ( get_post_type( $post ) == 'post' ) {
                    $ID = $category[0]->cat_ID;
                    get_category_parents_for_breadcrumbs( $ID, TRUE, $markup, FALSE );
    
                } else { // custom types
                    echo ucwords( get_post_type( $post ) ) . $markup;
                }
                return;
            }
            if(is_category()){
                $category = get_the_category();
                $i = $category[0]->cat_ID;
                $parent = $category[0]-> category_parent;
    
                if($parent > 0 && $category[0]->cat_name == single_cat_title("", false)){
                    echo get_category_parents($parent, TRUE, $markup, FALSE);
                }
                return single_cat_title('',FALSE);
            }
            if (is_tax()) { // taxonomy
                $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
                echo $term->name;
            }
            if(is_author()){
                $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
                return esc_html__('Author: ', 'udesign').$curauth->nickname;
            }
            if(is_tag()){ return esc_html__('Tag: ', 'udesign').single_tag_title('',FALSE); }
            if(is_404()){ return esc_html__('404 - Page not Found', 'udesign'); }
            if(is_search()){ return esc_html__('Search', 'udesign'); }
            if(is_year()){ return get_the_time('Y'); }
            if(is_month()){
                $k_year = get_the_time('Y');
                echo "<a href='".get_year_link($k_year)."'>".$k_year."</a>".$markup;
                return get_the_time('F');
            }
            if(is_day() || is_time()){
                $k_year = get_the_time('Y');
                $k_month = get_the_time('m');
                $k_month_display = get_the_time('F');
                echo "<a href='".get_year_link($k_year)."'>".$k_year."</a>".$markup;
                echo "<a href='".get_month_link($k_year, $k_month)."'>".$k_month_display."</a>".$markup;
                return get_the_time('jS (l)');
            }
        }
    }

    [Please post code or markup snippets between backticks or use the code button. Or better still – use a pastebin. Your posted code has been permanently damaged/corrupted by the forum’s parser.]

    BTW – I am using the u-Design theme from Themeforest.
    http://themeforest.net/item/udesign-wordpress-theme/full_screen_preview/253220

    Thanks again for your help in advance

    Thread Starter berestored

    (@berestored)

    Thanks Jonah. I am going to leave the thread open so that I can post any updates here. We will get it figured out, I am sure.

    Thread Starter berestored

    (@berestored)

    Hi Robb and Jonah,

    I will dig through that function in my functions.php file and see if I can include an “include or require” statement, within the function using the conditional statements that I saw in another post. I am meeting with someone on Wednesday of next week who is a bit more advanced than me in php so I am hoping he and I working together can get it sorted out.

    Thanks for getting back to me. If I have more questions, I will post them here or if I get it figured out I will also post the solution here for others

    Thanks,
    Manning

    Thread Starter berestored

    (@berestored)

    Thank you very much. Any help you can offer would be greatly appreciated. I checked with a friend and they said to possibly wrap it in an include statement which would call an external php file. (i.e. include events.php). I would need to know the code to put in the events.php file if an include or require statement will work.

    Let me know when you find out something. I have a little bit of time before my launch so I have some flexibility. Mid Feb is launch time so I will need to figure out a solution by then. I am interested in purchasing the pro version and facebook add-on but wanted to get the breadcrumbs issue sorted first.

    Thanks again.

Viewing 15 replies - 1 through 15 (of 19 total)